A number of the C# features, pragmas and typemaps have had their names changed.

They no longer have java or jni in their names. CHANGES file has complete list.


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4890 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2003-06-11 19:52:27 +00:00
commit b983da351d
4 changed files with 338 additions and 350 deletions

View file

@ -3,52 +3,52 @@
* OUTPUT * and OUTPUT & as they currently break functions that return a pointer or
* reference. */
%typemap(jni) bool *, bool & "bool *"
%typemap(jni) char & "char *"
%typemap(jni) signed char *, signed char & "signed char *"
%typemap(jni) unsigned char *, unsigned char & "unsigned short *"
%typemap(jni) short *, short & "short *"
%typemap(jni) unsigned short *, unsigned short & "unsigned short *"
%typemap(jni) int *, int & "int *"
%typemap(jni) unsigned int *, unsigned int & "unsigned int *"
%typemap(jni) long *, long & "long *"
%typemap(jni) unsigned long *, unsigned long & "unsigned long *"
%typemap(jni) long long *, long long & "long long *"
%typemap(jni) unsigned long long *, unsigned long long & "unsigned long long *"
%typemap(jni) float *, float & "float *"
%typemap(jni) double *, double & "double *"
%typemap(ctype) bool *, bool & "bool *"
%typemap(ctype) char & "char *"
%typemap(ctype) signed char *, signed char & "signed char *"
%typemap(ctype) unsigned char *, unsigned char & "unsigned short *"
%typemap(ctype) short *, short & "short *"
%typemap(ctype) unsigned short *, unsigned short & "unsigned short *"
%typemap(ctype) int *, int & "int *"
%typemap(ctype) unsigned int *, unsigned int & "unsigned int *"
%typemap(ctype) long *, long & "long *"
%typemap(ctype) unsigned long *, unsigned long & "unsigned long *"
%typemap(ctype) long long *, long long & "long long *"
%typemap(ctype) unsigned long long *, unsigned long long & "unsigned long long *"
%typemap(ctype) float *, float & "float *"
%typemap(ctype) double *, double & "double *"
%typemap(jtype) bool *, bool & "ref bool"
%typemap(jtype) char & "ref char"
%typemap(jtype) signed char *, signed char & "ref sbyte"
%typemap(jtype) unsigned char *, unsigned char & "ref byte"
%typemap(jtype) short *, short & "ref short"
%typemap(jtype) unsigned short *, unsigned short & "ref ushort"
%typemap(jtype) int *, int & "ref int"
%typemap(jtype) unsigned int *, unsigned int & "ref uint"
%typemap(jtype) long *, long & "ref int"
%typemap(jtype) unsigned long *, unsigned long & "ref uint"
%typemap(jtype) long long *, long long & "ref long"
%typemap(jtype) unsigned long long *, unsigned long long & "ref ulong"
%typemap(jtype) float *, float & "ref float"
%typemap(jtype) double *, double & "ref double"
%typemap(cstype) bool *, bool & "ref bool"
%typemap(cstype) char & "ref char"
%typemap(cstype) signed char *, signed char & "ref sbyte"
%typemap(cstype) unsigned char *, unsigned char & "ref byte"
%typemap(cstype) short *, short & "ref short"
%typemap(cstype) unsigned short *, unsigned short & "ref ushort"
%typemap(cstype) int *, int & "ref int"
%typemap(cstype) unsigned int *, unsigned int & "ref uint"
%typemap(cstype) long *, long & "ref int"
%typemap(cstype) unsigned long *, unsigned long & "ref uint"
%typemap(cstype) long long *, long long & "ref long"
%typemap(cstype) unsigned long long *, unsigned long long & "ref ulong"
%typemap(cstype) float *, float & "ref float"
%typemap(cstype) double *, double & "ref double"
%typemap(jstype) bool *, bool & "ref bool"
%typemap(jstype) char & "ref char"
%typemap(jstype) signed char *, signed char & "ref sbyte"
%typemap(jstype) unsigned char *, unsigned char & "ref byte"
%typemap(jstype) short *, short & "ref short"
%typemap(jstype) unsigned short *, unsigned short & "ref ushort"
%typemap(jstype) int *, int & "ref int"
%typemap(jstype) unsigned int *, unsigned int & "ref uint"
%typemap(jstype) long *, long & "ref int"
%typemap(jstype) unsigned long *, unsigned long & "ref uint"
%typemap(jstype) long long *, long long & "ref long"
%typemap(jstype) unsigned long long *, unsigned long long & "ref ulong"
%typemap(jstype) float *, float & "ref float"
%typemap(jstype) double *, double & "ref double"
%typemap(cswtype) bool *, bool & "ref bool"
%typemap(cswtype) char & "ref char"
%typemap(cswtype) signed char *, signed char & "ref sbyte"
%typemap(cswtype) unsigned char *, unsigned char & "ref byte"
%typemap(cswtype) short *, short & "ref short"
%typemap(cswtype) unsigned short *, unsigned short & "ref ushort"
%typemap(cswtype) int *, int & "ref int"
%typemap(cswtype) unsigned int *, unsigned int & "ref uint"
%typemap(cswtype) long *, long & "ref int"
%typemap(cswtype) unsigned long *, unsigned long & "ref uint"
%typemap(cswtype) long long *, long long & "ref long"
%typemap(cswtype) unsigned long long *, unsigned long long & "ref ulong"
%typemap(cswtype) float *, float & "ref float"
%typemap(cswtype) double *, double & "ref double"
%typemap(javain) bool *, bool &,
%typemap(csin) bool *, bool &,
char &,
signed char *, signed char &,
unsigned char *, unsigned char &,
@ -62,5 +62,5 @@
unsigned long long *, unsigned long long &,
float *, float &,
double *, double &
"ref $javainput"
"ref $csinput"