/tags/rel-1-3-15/SWIG/Examples/mzscheme/simple/example.i
# · Swig · 13 lines · 9 code · 2 blank · 2 comment · 0 complexity · 93baaa7f07d44a8b0452df7de72a6f0c MD5 · raw file
- /* File : example.i */
- %module example
- %{
- /* Put headers and other declarations here */
- %}
- %include typemaps.i
- extern double My_variable;
- extern int fact(int);
- %name(mod) extern int my_mod(int n, int m);
- extern int my_mod(int n, int m);
- extern char *get_time();