variable name 'in' is a c# keyword
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7345 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
b5fa5ee26f
commit
663cd0dfb9
1 changed files with 4 additions and 4 deletions
|
|
@ -14,14 +14,14 @@
|
|||
#endif
|
||||
%}
|
||||
|
||||
DLLIMPORT extern int externimport(int in);
|
||||
DLLIMPORT extern int externimport(int i);
|
||||
SWIGEXPORT extern int externexport(int);
|
||||
extern int SWIGSTDCALL externstdcall(int);
|
||||
|
||||
%{
|
||||
SWIGEXPORT extern int externimport(int in) { return in; }
|
||||
SWIGEXPORT extern int externexport(int in) { return in; }
|
||||
extern int SWIGSTDCALL externstdcall(int in) { return in; }
|
||||
SWIGEXPORT extern int externimport(int i) { return i; }
|
||||
SWIGEXPORT extern int externexport(int i) { return i; }
|
||||
extern int SWIGSTDCALL externstdcall(int i) { return i; }
|
||||
%}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue