diff options
Diffstat (limited to 'Examples/csharp/simple/example.i')
-rw-r--r-- | Examples/csharp/simple/example.i | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Examples/csharp/simple/example.i b/Examples/csharp/simple/example.i new file mode 100644 index 0000000..24093b9 --- /dev/null +++ b/Examples/csharp/simple/example.i @@ -0,0 +1,7 @@ +/* File : example.i */ +%module example + +%inline %{ +extern int gcd(int x, int y); +extern double Foo; +%} |