Home | History | Annotate | Download | only in csharp

Lines Matching refs:INOUT

12  * There are separate typemaps for in, out and inout arrays to enable avoiding 
22 * %apply int INOUT[] { int* array1, int *array2 }
78 // inout arrays
80 %typemap(ctype) CTYPE INOUT[] "CTYPE*"
81 %typemap(cstype) CTYPE INOUT[] "CSTYPE[]"
82 %typemap(imtype, inattributes="[In, Out, MarshalAs(UnmanagedType.LPArray)]") CTYPE INOUT[] "CSTYPE[]"
83 %typemap(csin) CTYPE INOUT[] "$csinput"
85 %typemap(in) CTYPE INOUT[] "$1 = $input;"
86 %typemap(freearg) CTYPE INOUT[] ""
87 %typemap(argout) CTYPE INOUT[] ""