csharp.swg 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054
  1. /* -----------------------------------------------------------------------------
  2. * csharp.swg
  3. *
  4. * C# typemaps
  5. * ----------------------------------------------------------------------------- */
  6. %include <csharphead.swg>
  7. /* The ctype, imtype and cstype typemaps work together and so there should be one of each.
  8. * The ctype typemap contains the PInvoke type used in the PInvoke (C/C++) code.
  9. * The imtype typemap contains the C# type used in the intermediary class.
  10. * The cstype typemap contains the C# type used in the C# proxy classes, type wrapper classes and module class. */
  11. /* SWIG 3 no longer inserts using directives into generated C# code. For backwards compatibility, the SWIG2_CSHARP
  12. macro can be defined to have SWIG 3 generate using directives similar to those generated by SWIG 2. */
  13. #ifdef SWIG2_CSHARP
  14. %typemap(csimports) SWIGTYPE, SWIGTYPE *, SWIGTYPE &, SWIGTYPE &&, SWIGTYPE [], SWIGTYPE (CLASS::*) "\nusing global::System;\nusing global::System.Runtime.InteropServices;\n"
  15. %pragma(csharp) moduleimports=%{
  16. using global::System;
  17. using global::System.Runtime.InteropServices;
  18. %}
  19. %pragma(csharp) imclassimports=%{
  20. using global::System;
  21. using global::System.Runtime.InteropServices;
  22. %}
  23. #endif
  24. /* Fragments */
  25. %fragment("SWIG_PackData", "header") {
  26. /* Pack binary data into a string */
  27. SWIGINTERN char * SWIG_PackData(char *c, void *ptr, size_t sz) {
  28. static const char hex[17] = "0123456789abcdef";
  29. const unsigned char *u = (unsigned char *) ptr;
  30. const unsigned char *eu = u + sz;
  31. for (; u != eu; ++u) {
  32. unsigned char uu = *u;
  33. *(c++) = hex[(uu & 0xf0) >> 4];
  34. *(c++) = hex[uu & 0xf];
  35. }
  36. return c;
  37. }
  38. }
  39. %fragment("SWIG_UnPackData", "header") {
  40. /* Unpack binary data from a string */
  41. SWIGINTERN const char * SWIG_UnpackData(const char *c, void *ptr, size_t sz) {
  42. unsigned char *u = (unsigned char *) ptr;
  43. const unsigned char *eu = u + sz;
  44. for (; u != eu; ++u) {
  45. char d = *(c++);
  46. unsigned char uu;
  47. if ((d >= '0') && (d <= '9'))
  48. uu = ((d - '0') << 4);
  49. else if ((d >= 'a') && (d <= 'f'))
  50. uu = ((d - ('a'-10)) << 4);
  51. else
  52. return (char *) 0;
  53. d = *(c++);
  54. if ((d >= '0') && (d <= '9'))
  55. uu |= (d - '0');
  56. else if ((d >= 'a') && (d <= 'f'))
  57. uu |= (d - ('a'-10));
  58. else
  59. return (char *) 0;
  60. *u = uu;
  61. }
  62. return c;
  63. }
  64. }
  65. /* Primitive types */
  66. %typemap(ctype) bool, const bool & "unsigned int"
  67. %typemap(ctype) char, const char & "char"
  68. %typemap(ctype) signed char, const signed char & "signed char"
  69. %typemap(ctype) unsigned char, const unsigned char & "unsigned char"
  70. %typemap(ctype) short, const short & "short"
  71. %typemap(ctype) unsigned short, const unsigned short & "unsigned short"
  72. %typemap(ctype) int, const int & "int"
  73. %typemap(ctype) unsigned int, const unsigned int & "unsigned int"
  74. %typemap(ctype) long, const long & "long"
  75. %typemap(ctype) unsigned long, const unsigned long & "unsigned long"
  76. %typemap(ctype) long long, const long long & "long long"
  77. %typemap(ctype) unsigned long long, const unsigned long long & "unsigned long long"
  78. %typemap(ctype) float, const float & "float"
  79. %typemap(ctype) double, const double & "double"
  80. %typemap(ctype) void "void"
  81. %typemap(imtype) bool, const bool & "bool"
  82. %typemap(imtype) char, const char & "char"
  83. %typemap(imtype) signed char, const signed char & "sbyte"
  84. %typemap(imtype) unsigned char, const unsigned char & "byte"
  85. %typemap(imtype) short, const short & "short"
  86. %typemap(imtype) unsigned short, const unsigned short & "ushort"
  87. %typemap(imtype) int, const int & "int"
  88. %typemap(imtype) unsigned int, const unsigned int & "uint"
  89. %typemap(imtype) long, const long & "int"
  90. %typemap(imtype) unsigned long, const unsigned long & "uint"
  91. %typemap(imtype) long long, const long long & "long"
  92. %typemap(imtype) unsigned long long, const unsigned long long & "ulong"
  93. %typemap(imtype) float, const float & "float"
  94. %typemap(imtype) double, const double & "double"
  95. %typemap(imtype) void "void"
  96. %typemap(cstype) bool, const bool & "bool"
  97. %typemap(cstype) char, const char & "char"
  98. %typemap(cstype) signed char, const signed char & "sbyte"
  99. %typemap(cstype) unsigned char, const unsigned char & "byte"
  100. %typemap(cstype) short, const short & "short"
  101. %typemap(cstype) unsigned short, const unsigned short & "ushort"
  102. %typemap(cstype) int, const int & "int"
  103. %typemap(cstype) unsigned int, const unsigned int & "uint"
  104. %typemap(cstype) long, const long & "int"
  105. %typemap(cstype) unsigned long, const unsigned long & "uint"
  106. %typemap(cstype) long long, const long long & "long"
  107. %typemap(cstype) unsigned long long, const unsigned long long & "ulong"
  108. %typemap(cstype) float, const float & "float"
  109. %typemap(cstype) double, const double & "double"
  110. %typemap(cstype) void "void"
  111. %typemap(ctype) char *, char *&, char[ANY], char[] "char *"
  112. %typemap(imtype) char *, char *&, char[ANY], char[] "string"
  113. %typemap(cstype) char *, char *&, char[ANY], char[] "string"
  114. /* Non primitive types */
  115. %typemap(ctype) SWIGTYPE "void *"
  116. %typemap(imtype, out="global::System.IntPtr") SWIGTYPE "global::System.Runtime.InteropServices.HandleRef"
  117. %typemap(cstype) SWIGTYPE "$&csclassname"
  118. %typemap(ctype) SWIGTYPE [] "void *"
  119. %typemap(imtype, out="global::System.IntPtr") SWIGTYPE [] "global::System.Runtime.InteropServices.HandleRef"
  120. %typemap(cstype) SWIGTYPE [] "$csclassname"
  121. %typemap(ctype) SWIGTYPE * "void *"
  122. %typemap(imtype, out="global::System.IntPtr") SWIGTYPE * "global::System.Runtime.InteropServices.HandleRef"
  123. %typemap(cstype) SWIGTYPE * "$csclassname"
  124. %typemap(ctype) SWIGTYPE & "void *"
  125. %typemap(imtype, out="global::System.IntPtr") SWIGTYPE & "global::System.Runtime.InteropServices.HandleRef"
  126. %typemap(cstype) SWIGTYPE & "$csclassname"
  127. %typemap(ctype) SWIGTYPE && "void *"
  128. %typemap(imtype, out="global::System.IntPtr") SWIGTYPE && "global::System.Runtime.InteropServices.HandleRef"
  129. %typemap(cstype) SWIGTYPE && "$csclassname"
  130. /* pointer to a class member */
  131. %typemap(ctype) SWIGTYPE (CLASS::*) "char *"
  132. %typemap(imtype) SWIGTYPE (CLASS::*) "string"
  133. %typemap(cstype) SWIGTYPE (CLASS::*) "$csclassname"
  134. /* The following are the in and out typemaps. These are the PInvoke code generating typemaps for converting from C# to C and visa versa. */
  135. /* primitive types */
  136. %typemap(in) bool
  137. %{ $1 = $input ? true : false; %}
  138. %typemap(directorout) bool
  139. %{ $result = $input ? true : false; %}
  140. %typemap(csdirectorin) bool "$iminput"
  141. %typemap(csdirectorout) bool "$cscall"
  142. %typemap(in) char,
  143. signed char,
  144. unsigned char,
  145. short,
  146. unsigned short,
  147. int,
  148. unsigned int,
  149. long,
  150. unsigned long,
  151. long long,
  152. unsigned long long,
  153. float,
  154. double
  155. %{ $1 = ($1_ltype)$input; %}
  156. %typemap(directorout) char,
  157. signed char,
  158. unsigned char,
  159. short,
  160. unsigned short,
  161. int,
  162. unsigned int,
  163. long,
  164. unsigned long,
  165. long long,
  166. unsigned long long,
  167. float,
  168. double
  169. %{ $result = ($1_ltype)$input; %}
  170. %typemap(directorin) bool "$input = $1;"
  171. %typemap(directorin) char "$input = $1;"
  172. %typemap(directorin) signed char "$input = $1;"
  173. %typemap(directorin) unsigned char "$input = $1;"
  174. %typemap(directorin) short "$input = $1;"
  175. %typemap(directorin) unsigned short "$input = $1;"
  176. %typemap(directorin) int "$input = $1;"
  177. %typemap(directorin) unsigned int "$input = $1;"
  178. %typemap(directorin) long "$input = $1;"
  179. %typemap(directorin) unsigned long "$input = (unsigned long)$1;"
  180. %typemap(directorin) long long "$input = $1;"
  181. %typemap(directorin) unsigned long long "$input = $1;"
  182. %typemap(directorin) float "$input = $1;"
  183. %typemap(directorin) double "$input = $1;"
  184. %typemap(csdirectorin) char,
  185. signed char,
  186. unsigned char,
  187. short,
  188. unsigned short,
  189. int,
  190. unsigned int,
  191. long,
  192. unsigned long,
  193. long long,
  194. unsigned long long,
  195. float,
  196. double
  197. "$iminput"
  198. %typemap(csdirectorout) char,
  199. signed char,
  200. unsigned char,
  201. short,
  202. unsigned short,
  203. int,
  204. unsigned int,
  205. long,
  206. unsigned long,
  207. long long,
  208. unsigned long long,
  209. float,
  210. double
  211. "$cscall"
  212. %typemap(out) bool %{ $result = $1; %}
  213. %typemap(out) char %{ $result = $1; %}
  214. %typemap(out) signed char %{ $result = $1; %}
  215. %typemap(out) unsigned char %{ $result = $1; %}
  216. %typemap(out) short %{ $result = $1; %}
  217. %typemap(out) unsigned short %{ $result = $1; %}
  218. %typemap(out) int %{ $result = $1; %}
  219. %typemap(out) unsigned int %{ $result = $1; %}
  220. %typemap(out) long %{ $result = $1; %}
  221. %typemap(out) unsigned long %{ $result = (unsigned long)$1; %}
  222. %typemap(out) long long %{ $result = $1; %}
  223. %typemap(out) unsigned long long %{ $result = $1; %}
  224. %typemap(out) float %{ $result = $1; %}
  225. %typemap(out) double %{ $result = $1; %}
  226. /* char * - treat as String */
  227. %typemap(in) char * %{ $1 = ($1_ltype)$input; %}
  228. %typemap(out) char * %{ $result = SWIG_csharp_string_callback((const char *)$1); %}
  229. %typemap(directorout, warning=SWIGWARN_TYPEMAP_DIRECTOROUT_PTR_MSG) char * %{ $result = ($1_ltype)$input; %}
  230. %typemap(directorin) char * %{ $input = SWIG_csharp_string_callback((const char *)$1); %}
  231. %typemap(csdirectorin) char * "$iminput"
  232. %typemap(csdirectorout) char * "$cscall"
  233. /* char *& - treat as String */
  234. %typemap(in) char *& ($*1_ltype temp = 0) %{
  235. temp = ($*1_ltype)$input;
  236. $1 = &temp;
  237. %}
  238. %typemap(out) char *& %{ if ($1) $result = SWIG_csharp_string_callback((const char *)*$1); %}
  239. %typemap(out, null="") void ""
  240. %typemap(csdirectorin) void "$iminput"
  241. %typemap(csdirectorout) void "$cscall"
  242. %typemap(directorin) void ""
  243. /* primitive types by const reference */
  244. %typemap(in) const bool & ($*1_ltype temp)
  245. %{ temp = $input ? true : false;
  246. $1 = &temp; %}
  247. %typemap(directorout,warning=SWIGWARN_TYPEMAP_THREAD_UNSAFE_MSG) const bool &
  248. %{ static $*1_ltype temp;
  249. temp = $input ? true : false;
  250. $result = &temp; %}
  251. %typemap(csdirectorin) const bool & "$iminput"
  252. %typemap(csdirectorout) const bool & "$cscall"
  253. %typemap(in) const char & ($*1_ltype temp),
  254. const signed char & ($*1_ltype temp),
  255. const unsigned char & ($*1_ltype temp),
  256. const short & ($*1_ltype temp),
  257. const unsigned short & ($*1_ltype temp),
  258. const int & ($*1_ltype temp),
  259. const unsigned int & ($*1_ltype temp),
  260. const long & ($*1_ltype temp),
  261. const unsigned long & ($*1_ltype temp),
  262. const long long & ($*1_ltype temp),
  263. const unsigned long long & ($*1_ltype temp),
  264. const float & ($*1_ltype temp),
  265. const double & ($*1_ltype temp)
  266. %{ temp = ($*1_ltype)$input;
  267. $1 = &temp; %}
  268. %typemap(directorout,warning=SWIGWARN_TYPEMAP_THREAD_UNSAFE_MSG) const char &,
  269. const signed char &,
  270. const unsigned char &,
  271. const short &,
  272. const unsigned short &,
  273. const int &,
  274. const unsigned int &,
  275. const long &,
  276. const unsigned long &,
  277. const long long &,
  278. const unsigned long long &,
  279. const float &,
  280. const double &
  281. %{ static $*1_ltype temp;
  282. temp = ($*1_ltype)$input;
  283. $result = &temp; %}
  284. %typemap(directorin) const bool & "$input = $1;"
  285. %typemap(directorin) const char & "$input = $1;"
  286. %typemap(directorin) const signed char & "$input = $1;"
  287. %typemap(directorin) const unsigned char & "$input = $1;"
  288. %typemap(directorin) const short & "$input = $1;"
  289. %typemap(directorin) const unsigned short & "$input = $1;"
  290. %typemap(directorin) const int & "$input = $1;"
  291. %typemap(directorin) const unsigned int & "$input = $1;"
  292. %typemap(directorin) const long & "$input = $1;"
  293. %typemap(directorin) const unsigned long & "$input = $1;"
  294. %typemap(directorin) const long long & "$input = $1;"
  295. %typemap(directorin) const unsigned long long & "$input = $1;"
  296. %typemap(directorin) const float & "$input = $1;"
  297. %typemap(directorin) const double & "$input = $1;"
  298. %typemap(csdirectorin) const char & ($*1_ltype temp),
  299. const signed char & ($*1_ltype temp),
  300. const unsigned char & ($*1_ltype temp),
  301. const short & ($*1_ltype temp),
  302. const unsigned short & ($*1_ltype temp),
  303. const int & ($*1_ltype temp),
  304. const unsigned int & ($*1_ltype temp),
  305. const long & ($*1_ltype temp),
  306. const unsigned long & ($*1_ltype temp),
  307. const long long & ($*1_ltype temp),
  308. const unsigned long long & ($*1_ltype temp),
  309. const float & ($*1_ltype temp),
  310. const double & ($*1_ltype temp)
  311. "$iminput"
  312. %typemap(csdirectorout) const char & ($*1_ltype temp),
  313. const signed char & ($*1_ltype temp),
  314. const unsigned char & ($*1_ltype temp),
  315. const short & ($*1_ltype temp),
  316. const unsigned short & ($*1_ltype temp),
  317. const int & ($*1_ltype temp),
  318. const unsigned int & ($*1_ltype temp),
  319. const long & ($*1_ltype temp),
  320. const unsigned long & ($*1_ltype temp),
  321. const long long & ($*1_ltype temp),
  322. const unsigned long long & ($*1_ltype temp),
  323. const float & ($*1_ltype temp),
  324. const double & ($*1_ltype temp)
  325. "$cscall"
  326. %typemap(out) const bool & %{ $result = *$1; %}
  327. %typemap(out) const char & %{ $result = *$1; %}
  328. %typemap(out) const signed char & %{ $result = *$1; %}
  329. %typemap(out) const unsigned char & %{ $result = *$1; %}
  330. %typemap(out) const short & %{ $result = *$1; %}
  331. %typemap(out) const unsigned short & %{ $result = *$1; %}
  332. %typemap(out) const int & %{ $result = *$1; %}
  333. %typemap(out) const unsigned int & %{ $result = *$1; %}
  334. %typemap(out) const long & %{ $result = *$1; %}
  335. %typemap(out) const unsigned long & %{ $result = (unsigned long)*$1; %}
  336. %typemap(out) const long long & %{ $result = *$1; %}
  337. %typemap(out) const unsigned long long & %{ $result = *$1; %}
  338. %typemap(out) const float & %{ $result = *$1; %}
  339. %typemap(out) const double & %{ $result = *$1; %}
  340. /* Default handling. Object passed by value. Convert to a pointer */
  341. %typemap(in, canthrow=1) SWIGTYPE ($&1_type argp)
  342. %{ argp = ($&1_ltype)$input;
  343. if (!argp) {
  344. SWIG_CSharpSetPendingExceptionArgument(SWIG_CSharpArgumentNullException, "Attempt to dereference null $1_type", 0);
  345. return $null;
  346. }
  347. $1 = *argp; %}
  348. %typemap(directorout) SWIGTYPE
  349. %{ if (!$input) {
  350. SWIG_CSharpSetPendingExceptionArgument(SWIG_CSharpArgumentNullException, "Unexpected null return for type $1_type", 0);
  351. return $null;
  352. }
  353. $result = *($&1_ltype)$input; %}
  354. %typemap(out) SWIGTYPE
  355. #ifdef __cplusplus
  356. %{ $result = new $1_ltype((const $1_ltype &)$1); %}
  357. #else
  358. {
  359. $&1_ltype $1ptr = ($&1_ltype) malloc(sizeof($1_ltype));
  360. memmove($1ptr, &$1, sizeof($1_type));
  361. $result = $1ptr;
  362. }
  363. #endif
  364. %typemap(directorin) SWIGTYPE
  365. %{ $input = (void *)&$1; %}
  366. %typemap(csdirectorin) SWIGTYPE "new $&csclassname($iminput, false)"
  367. %typemap(csdirectorout) SWIGTYPE "$&csclassname.getCPtr($cscall).Handle"
  368. /* Generic pointers and references */
  369. %typemap(in) SWIGTYPE * %{ $1 = ($1_ltype)$input; %}
  370. %typemap(in, fragment="SWIG_UnPackData") SWIGTYPE (CLASS::*) %{
  371. SWIG_UnpackData($input, (void *)&$1, sizeof($1));
  372. %}
  373. %typemap(in, canthrow=1) SWIGTYPE & %{ $1 = ($1_ltype)$input;
  374. if (!$1) {
  375. SWIG_CSharpSetPendingExceptionArgument(SWIG_CSharpArgumentNullException, "$1_type type is null", 0);
  376. return $null;
  377. } %}
  378. %typemap(in, canthrow=1) SWIGTYPE && %{ $1 = ($1_ltype)$input;
  379. if (!$1) {
  380. SWIG_CSharpSetPendingExceptionArgument(SWIG_CSharpArgumentNullException, "$1_type type is null", 0);
  381. return $null;
  382. } %}
  383. %typemap(out) SWIGTYPE * %{ $result = (void *)$1; %}
  384. %typemap(out, fragment="SWIG_PackData") SWIGTYPE (CLASS::*) %{
  385. char buf[128];
  386. char *data = SWIG_PackData(buf, (void *)&$1, sizeof($1));
  387. *data = '\0';
  388. $result = SWIG_csharp_string_callback(buf);
  389. %}
  390. %typemap(out) SWIGTYPE & %{ $result = (void *)$1; %}
  391. %typemap(out) SWIGTYPE && %{ $result = (void *)$1; %}
  392. %typemap(directorout, warning=SWIGWARN_TYPEMAP_DIRECTOROUT_PTR_MSG) SWIGTYPE *
  393. %{ $result = ($1_ltype)$input; %}
  394. %typemap(directorout, warning=SWIGWARN_TYPEMAP_DIRECTOROUT_PTR_MSG) SWIGTYPE (CLASS::*)
  395. %{ $result = ($1_ltype)$input; %}
  396. %typemap(directorin) SWIGTYPE *
  397. %{ $input = (void *) $1; %}
  398. %typemap(directorin) SWIGTYPE (CLASS::*)
  399. %{ $input = (void *) $1; %}
  400. %typemap(directorout, warning=SWIGWARN_TYPEMAP_DIRECTOROUT_PTR_MSG) SWIGTYPE &
  401. %{ if (!$input) {
  402. SWIG_CSharpSetPendingExceptionArgument(SWIG_CSharpArgumentNullException, "Unexpected null return for type $1_type", 0);
  403. return $null;
  404. }
  405. $result = ($1_ltype)$input; %}
  406. %typemap(directorout, warning=SWIGWARN_TYPEMAP_DIRECTOROUT_PTR_MSG) SWIGTYPE &&
  407. %{ if (!$input) {
  408. SWIG_CSharpSetPendingExceptionArgument(SWIG_CSharpArgumentNullException, "Unexpected null return for type $1_type", 0);
  409. return $null;
  410. }
  411. $result = ($1_ltype)$input; %}
  412. %typemap(directorin) SWIGTYPE &
  413. %{ $input = ($1_ltype) &$1; %}
  414. %typemap(directorin) SWIGTYPE &&
  415. %{ $input = ($1_ltype) &$1; %}
  416. %typemap(csdirectorin) SWIGTYPE *, SWIGTYPE (CLASS::*) "($iminput == global::System.IntPtr.Zero) ? null : new $csclassname($iminput, false)"
  417. %typemap(csdirectorin) SWIGTYPE & "new $csclassname($iminput, false)"
  418. %typemap(csdirectorin) SWIGTYPE && "new $csclassname($iminput, false)"
  419. %typemap(csdirectorout) SWIGTYPE *, SWIGTYPE (CLASS::*), SWIGTYPE &, SWIGTYPE && "$csclassname.getCPtr($cscall).Handle"
  420. /* Default array handling */
  421. %typemap(in) SWIGTYPE [] %{ $1 = ($1_ltype)$input; %}
  422. %typemap(out) SWIGTYPE [] %{ $result = $1; %}
  423. /* char arrays - treat as String */
  424. %typemap(in) char[ANY], char[] %{ $1 = ($1_ltype)$input; %}
  425. %typemap(out) char[ANY], char[] %{ $result = SWIG_csharp_string_callback((const char *)$1); %}
  426. %typemap(directorout) char[ANY], char[] %{ $result = ($1_ltype)$input; %}
  427. %typemap(directorin) char[ANY], char[] %{ $input = SWIG_csharp_string_callback((const char *)$1); %}
  428. %typemap(csdirectorin) char[ANY], char[] "$iminput"
  429. %typemap(csdirectorout) char[ANY], char[] "$cscall"
  430. /* Typecheck typemaps - The purpose of these is merely to issue a warning for overloaded C++ functions
  431. * that cannot be overloaded in C# as more than one C++ type maps to a single C# type */
  432. %typecheck(SWIG_TYPECHECK_BOOL)
  433. bool,
  434. const bool &
  435. ""
  436. %typecheck(SWIG_TYPECHECK_CHAR)
  437. char,
  438. const char &
  439. ""
  440. %typecheck(SWIG_TYPECHECK_INT8)
  441. signed char,
  442. const signed char &
  443. ""
  444. %typecheck(SWIG_TYPECHECK_UINT8)
  445. unsigned char,
  446. const unsigned char &
  447. ""
  448. %typecheck(SWIG_TYPECHECK_INT16)
  449. short,
  450. const short &
  451. ""
  452. %typecheck(SWIG_TYPECHECK_UINT16)
  453. unsigned short,
  454. const unsigned short &
  455. ""
  456. %typecheck(SWIG_TYPECHECK_INT32)
  457. int,
  458. long,
  459. const int &,
  460. const long &
  461. ""
  462. %typecheck(SWIG_TYPECHECK_UINT32)
  463. unsigned int,
  464. unsigned long,
  465. const unsigned int &,
  466. const unsigned long &
  467. ""
  468. %typecheck(SWIG_TYPECHECK_INT64)
  469. long long,
  470. const long long &
  471. ""
  472. %typecheck(SWIG_TYPECHECK_UINT64)
  473. unsigned long long,
  474. const unsigned long long &
  475. ""
  476. %typecheck(SWIG_TYPECHECK_FLOAT)
  477. float,
  478. const float &
  479. ""
  480. %typecheck(SWIG_TYPECHECK_DOUBLE)
  481. double,
  482. const double &
  483. ""
  484. %typecheck(SWIG_TYPECHECK_STRING)
  485. char *,
  486. char *&,
  487. char[ANY],
  488. char[]
  489. ""
  490. %typecheck(SWIG_TYPECHECK_POINTER)
  491. SWIGTYPE,
  492. SWIGTYPE *,
  493. SWIGTYPE &,
  494. SWIGTYPE &&,
  495. SWIGTYPE *const&,
  496. SWIGTYPE [],
  497. SWIGTYPE (CLASS::*)
  498. ""
  499. /* Exception handling */
  500. %typemap(throws, canthrow=1) int,
  501. long,
  502. short,
  503. unsigned int,
  504. unsigned long,
  505. unsigned short
  506. %{ char error_msg[256];
  507. sprintf(error_msg, "C++ $1_type exception thrown, value: %d", $1);
  508. SWIG_CSharpSetPendingException(SWIG_CSharpApplicationException, error_msg);
  509. return $null; %}
  510. %typemap(throws, canthrow=1) SWIGTYPE, SWIGTYPE &, SWIGTYPE &&, SWIGTYPE *, SWIGTYPE [ANY]
  511. %{ (void)$1;
  512. SWIG_CSharpSetPendingException(SWIG_CSharpApplicationException, "C++ $1_type exception thrown");
  513. return $null; %}
  514. %typemap(throws, canthrow=1) char *
  515. %{ SWIG_CSharpSetPendingException(SWIG_CSharpApplicationException, $1);
  516. return $null; %}
  517. /* Typemaps for code generation in proxy classes and C# type wrapper classes */
  518. /* The csin typemap is used for converting function parameter types from the type
  519. * used in the proxy, module or type wrapper class to the type used in the PInvoke class. */
  520. %typemap(csin) bool, const bool &,
  521. char, const char &,
  522. signed char, const signed char &,
  523. unsigned char, const unsigned char &,
  524. short, const short &,
  525. unsigned short, const unsigned short &,
  526. int, const int &,
  527. unsigned int, const unsigned int &,
  528. long, const long &,
  529. unsigned long, const unsigned long &,
  530. long long, const long long &,
  531. unsigned long long, const unsigned long long &,
  532. float, const float &,
  533. double, const double &
  534. "$csinput"
  535. %typemap(csin) char *, char *&, char[ANY], char[] "$csinput"
  536. %typemap(csin) SWIGTYPE "$&csclassname.getCPtr($csinput)"
  537. %typemap(csin) SWIGTYPE *, SWIGTYPE &, SWIGTYPE &&, SWIGTYPE [] "$csclassname.getCPtr($csinput)"
  538. %typemap(csin) SWIGTYPE (CLASS::*) "$csclassname.getCMemberPtr($csinput)"
  539. /* The csout typemap is used for converting function return types from the return type
  540. * used in the PInvoke class to the type returned by the proxy, module or type wrapper class.
  541. * The $excode special variable is replaced by the excode typemap attribute code if the
  542. * method can throw any exceptions from unmanaged code, otherwise replaced by nothing. */
  543. // Macro used by the $excode special variable
  544. %define SWIGEXCODE "\n if ($imclassname.SWIGPendingException.Pending) throw $imclassname.SWIGPendingException.Retrieve();" %enddef
  545. %define SWIGEXCODE2 "\n if ($imclassname.SWIGPendingException.Pending) throw $imclassname.SWIGPendingException.Retrieve();" %enddef
  546. %typemap(csout, excode=SWIGEXCODE) bool, const bool & {
  547. bool ret = $imcall;$excode
  548. return ret;
  549. }
  550. %typemap(csout, excode=SWIGEXCODE) char, const char & {
  551. char ret = $imcall;$excode
  552. return ret;
  553. }
  554. %typemap(csout, excode=SWIGEXCODE) signed char, const signed char & {
  555. sbyte ret = $imcall;$excode
  556. return ret;
  557. }
  558. %typemap(csout, excode=SWIGEXCODE) unsigned char, const unsigned char & {
  559. byte ret = $imcall;$excode
  560. return ret;
  561. }
  562. %typemap(csout, excode=SWIGEXCODE) short, const short & {
  563. short ret = $imcall;$excode
  564. return ret;
  565. }
  566. %typemap(csout, excode=SWIGEXCODE) unsigned short, const unsigned short & {
  567. ushort ret = $imcall;$excode
  568. return ret;
  569. }
  570. %typemap(csout, excode=SWIGEXCODE) int, const int & {
  571. int ret = $imcall;$excode
  572. return ret;
  573. }
  574. %typemap(csout, excode=SWIGEXCODE) unsigned int, const unsigned int & {
  575. uint ret = $imcall;$excode
  576. return ret;
  577. }
  578. %typemap(csout, excode=SWIGEXCODE) long, const long & {
  579. int ret = $imcall;$excode
  580. return ret;
  581. }
  582. %typemap(csout, excode=SWIGEXCODE) unsigned long, const unsigned long & {
  583. uint ret = $imcall;$excode
  584. return ret;
  585. }
  586. %typemap(csout, excode=SWIGEXCODE) long long, const long long & {
  587. long ret = $imcall;$excode
  588. return ret;
  589. }
  590. %typemap(csout, excode=SWIGEXCODE) unsigned long long, const unsigned long long & {
  591. ulong ret = $imcall;$excode
  592. return ret;
  593. }
  594. %typemap(csout, excode=SWIGEXCODE) float, const float & {
  595. float ret = $imcall;$excode
  596. return ret;
  597. }
  598. %typemap(csout, excode=SWIGEXCODE) double, const double & {
  599. double ret = $imcall;$excode
  600. return ret;
  601. }
  602. %typemap(csout, excode=SWIGEXCODE) char *, char *&, char[ANY], char[] {
  603. string ret = $imcall;$excode
  604. return ret;
  605. }
  606. %typemap(csout, excode=SWIGEXCODE) void {
  607. $imcall;$excode
  608. }
  609. %typemap(csout, excode=SWIGEXCODE) SWIGTYPE {
  610. $&csclassname ret = new $&csclassname($imcall, true);$excode
  611. return ret;
  612. }
  613. %typemap(csout, excode=SWIGEXCODE) SWIGTYPE & {
  614. $csclassname ret = new $csclassname($imcall, $owner);$excode
  615. return ret;
  616. }
  617. %typemap(csout, excode=SWIGEXCODE) SWIGTYPE && {
  618. $csclassname ret = new $csclassname($imcall, $owner);$excode
  619. return ret;
  620. }
  621. %typemap(csout, excode=SWIGEXCODE) SWIGTYPE *, SWIGTYPE [] {
  622. global::System.IntPtr cPtr = $imcall;
  623. $csclassname ret = (cPtr == global::System.IntPtr.Zero) ? null : new $csclassname(cPtr, $owner);$excode
  624. return ret;
  625. }
  626. %typemap(csout, excode=SWIGEXCODE) SWIGTYPE (CLASS::*) {
  627. string cMemberPtr = $imcall;
  628. $csclassname ret = (cMemberPtr == null) ? null : new $csclassname(cMemberPtr, $owner);$excode
  629. return ret;
  630. }
  631. /* Properties */
  632. %typemap(csvarin, excode=SWIGEXCODE2) SWIGTYPE, SWIGTYPE *, SWIGTYPE &, SWIGTYPE &&, SWIGTYPE [], SWIGTYPE (CLASS::*) %{
  633. set {
  634. $imcall;$excode
  635. } %}
  636. %typemap(csvarin, excode=SWIGEXCODE2) char *, char *&, char[ANY], char[] %{
  637. set {
  638. $imcall;$excode
  639. } %}
  640. %typemap(csvarout, excode=SWIGEXCODE2) bool, const bool & %{
  641. get {
  642. bool ret = $imcall;$excode
  643. return ret;
  644. } %}
  645. %typemap(csvarout, excode=SWIGEXCODE2) char, const char & %{
  646. get {
  647. char ret = $imcall;$excode
  648. return ret;
  649. } %}
  650. %typemap(csvarout, excode=SWIGEXCODE2) signed char, const signed char & %{
  651. get {
  652. sbyte ret = $imcall;$excode
  653. return ret;
  654. } %}
  655. %typemap(csvarout, excode=SWIGEXCODE2) unsigned char, const unsigned char & %{
  656. get {
  657. byte ret = $imcall;$excode
  658. return ret;
  659. } %}
  660. %typemap(csvarout, excode=SWIGEXCODE2) short, const short & %{
  661. get {
  662. short ret = $imcall;$excode
  663. return ret;
  664. } %}
  665. %typemap(csvarout, excode=SWIGEXCODE2) unsigned short, const unsigned short & %{
  666. get {
  667. ushort ret = $imcall;$excode
  668. return ret;
  669. } %}
  670. %typemap(csvarout, excode=SWIGEXCODE2) int, const int & %{
  671. get {
  672. int ret = $imcall;$excode
  673. return ret;
  674. } %}
  675. %typemap(csvarout, excode=SWIGEXCODE2) unsigned int, const unsigned int & %{
  676. get {
  677. uint ret = $imcall;$excode
  678. return ret;
  679. } %}
  680. %typemap(csvarout, excode=SWIGEXCODE2) long, const long & %{
  681. get {
  682. int ret = $imcall;$excode
  683. return ret;
  684. } %}
  685. %typemap(csvarout, excode=SWIGEXCODE2) unsigned long, const unsigned long & %{
  686. get {
  687. uint ret = $imcall;$excode
  688. return ret;
  689. } %}
  690. %typemap(csvarout, excode=SWIGEXCODE2) long long, const long long & %{
  691. get {
  692. long ret = $imcall;$excode
  693. return ret;
  694. } %}
  695. %typemap(csvarout, excode=SWIGEXCODE2) unsigned long long, const unsigned long long & %{
  696. get {
  697. ulong ret = $imcall;$excode
  698. return ret;
  699. } %}
  700. %typemap(csvarout, excode=SWIGEXCODE2) float, const float & %{
  701. get {
  702. float ret = $imcall;$excode
  703. return ret;
  704. } %}
  705. %typemap(csvarout, excode=SWIGEXCODE2) double, const double & %{
  706. get {
  707. double ret = $imcall;$excode
  708. return ret;
  709. } %}
  710. %typemap(csvarout, excode=SWIGEXCODE2) char *, char *&, char[ANY], char[] %{
  711. get {
  712. string ret = $imcall;$excode
  713. return ret;
  714. } %}
  715. %typemap(csvarout, excode=SWIGEXCODE2) void %{
  716. get {
  717. $imcall;$excode
  718. } %}
  719. %typemap(csvarout, excode=SWIGEXCODE2) SWIGTYPE %{
  720. get {
  721. $&csclassname ret = new $&csclassname($imcall, true);$excode
  722. return ret;
  723. } %}
  724. %typemap(csvarout, excode=SWIGEXCODE2) SWIGTYPE & %{
  725. get {
  726. $csclassname ret = new $csclassname($imcall, $owner);$excode
  727. return ret;
  728. } %}
  729. %typemap(csvarout, excode=SWIGEXCODE2) SWIGTYPE && %{
  730. get {
  731. $csclassname ret = new $csclassname($imcall, $owner);$excode
  732. return ret;
  733. } %}
  734. %typemap(csvarout, excode=SWIGEXCODE2) SWIGTYPE *, SWIGTYPE [] %{
  735. get {
  736. global::System.IntPtr cPtr = $imcall;
  737. $csclassname ret = (cPtr == global::System.IntPtr.Zero) ? null : new $csclassname(cPtr, $owner);$excode
  738. return ret;
  739. } %}
  740. %typemap(csvarout, excode=SWIGEXCODE2) SWIGTYPE (CLASS::*) %{
  741. get {
  742. string cMemberPtr = $imcall;
  743. $csclassname ret = (cMemberPtr == null) ? null : new $csclassname(cMemberPtr, $owner);$excode
  744. return ret;
  745. } %}
  746. /* Pointer reference typemaps */
  747. %typemap(ctype) SWIGTYPE *const& "void *"
  748. %typemap(imtype, out="global::System.IntPtr") SWIGTYPE *const& "global::System.Runtime.InteropServices.HandleRef"
  749. %typemap(cstype) SWIGTYPE *const& "$*csclassname"
  750. %typemap(csin) SWIGTYPE *const& "$*csclassname.getCPtr($csinput)"
  751. %typemap(csout, excode=SWIGEXCODE) SWIGTYPE *const& {
  752. global::System.IntPtr cPtr = $imcall;
  753. $*csclassname ret = (cPtr == global::System.IntPtr.Zero) ? null : new $*csclassname(cPtr, $owner);$excode
  754. return ret;
  755. }
  756. %typemap(in) SWIGTYPE *const& ($*1_ltype temp = 0)
  757. %{ temp = ($*1_ltype)$input;
  758. $1 = ($1_ltype)&temp; %}
  759. %typemap(out) SWIGTYPE *const&
  760. %{ $result = (void *)*$1; %}
  761. /* Marshal C/C++ pointer to global::System.IntPtr */
  762. %typemap(ctype) void *VOID_INT_PTR "void *"
  763. %typemap(imtype) void *VOID_INT_PTR "global::System.IntPtr"
  764. %typemap(cstype) void *VOID_INT_PTR "global::System.IntPtr"
  765. %typemap(in) void *VOID_INT_PTR %{ $1 = ($1_ltype)$input; %}
  766. %typemap(out) void *VOID_INT_PTR %{ $result = (void *)$1; %}
  767. %typemap(csin) void *VOID_INT_PTR "$csinput"
  768. %typemap(csout, excode=SWIGEXCODE) void *VOID_INT_PTR {
  769. global::System.IntPtr ret = $imcall;$excode
  770. return ret;
  771. }
  772. /* Typemaps used for the generation of proxy and type wrapper class code */
  773. %typemap(csbase) SWIGTYPE, SWIGTYPE *, SWIGTYPE &, SWIGTYPE &&, SWIGTYPE [], SWIGTYPE (CLASS::*) ""
  774. %typemap(csclassmodifiers) SWIGTYPE, SWIGTYPE *, SWIGTYPE &, SWIGTYPE &&, SWIGTYPE [], SWIGTYPE (CLASS::*) "public class"
  775. %typemap(cscode) SWIGTYPE, SWIGTYPE *, SWIGTYPE &, SWIGTYPE &&, SWIGTYPE [], SWIGTYPE (CLASS::*) ""
  776. %typemap(csinterfaces) SWIGTYPE "global::System.IDisposable"
  777. %typemap(csinterfaces) SWIGTYPE *, SWIGTYPE &, SWIGTYPE &&, SWIGTYPE [], SWIGTYPE (CLASS::*) ""
  778. %typemap(csinterfaces_derived) SWIGTYPE, SWIGTYPE *, SWIGTYPE &, SWIGTYPE &&, SWIGTYPE [], SWIGTYPE (CLASS::*) ""
  779. // csbody typemaps... these are in macros so that the visibility of the methods can be easily changed by users.
  780. %define SWIG_CSBODY_PROXY(PTRCTOR_VISIBILITY, CPTR_VISIBILITY, TYPE...)
  781. // Proxy classes (base classes, ie, not derived classes)
  782. %typemap(csbody) TYPE %{
  783. private global::System.Runtime.InteropServices.HandleRef swigCPtr;
  784. protected bool swigCMemOwn;
  785. PTRCTOR_VISIBILITY $csclassname(global::System.IntPtr cPtr, bool cMemoryOwn) {
  786. swigCMemOwn = cMemoryOwn;
  787. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
  788. }
  789. CPTR_VISIBILITY static global::System.Runtime.InteropServices.HandleRef getCPtr($csclassname obj) {
  790. return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
  791. }
  792. %}
  793. // Derived proxy classes
  794. %typemap(csbody_derived) TYPE %{
  795. private global::System.Runtime.InteropServices.HandleRef swigCPtr;
  796. PTRCTOR_VISIBILITY $csclassname(global::System.IntPtr cPtr, bool cMemoryOwn) : base($imclassname.$csclazznameSWIGUpcast(cPtr), cMemoryOwn) {
  797. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
  798. }
  799. CPTR_VISIBILITY static global::System.Runtime.InteropServices.HandleRef getCPtr($csclassname obj) {
  800. return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
  801. }
  802. %}
  803. %enddef
  804. %define SWIG_CSBODY_TYPEWRAPPER(PTRCTOR_VISIBILITY, DEFAULTCTOR_VISIBILITY, CPTR_VISIBILITY, TYPE...)
  805. // Typewrapper classes
  806. %typemap(csbody) TYPE *, TYPE &, TYPE &&, TYPE [] %{
  807. private global::System.Runtime.InteropServices.HandleRef swigCPtr;
  808. PTRCTOR_VISIBILITY $csclassname(global::System.IntPtr cPtr, bool futureUse) {
  809. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
  810. }
  811. DEFAULTCTOR_VISIBILITY $csclassname() {
  812. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
  813. }
  814. CPTR_VISIBILITY static global::System.Runtime.InteropServices.HandleRef getCPtr($csclassname obj) {
  815. return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
  816. }
  817. %}
  818. %typemap(csbody) TYPE (CLASS::*) %{
  819. private string swigCMemberPtr;
  820. PTRCTOR_VISIBILITY $csclassname(string cMemberPtr, bool futureUse) {
  821. swigCMemberPtr = cMemberPtr;
  822. }
  823. DEFAULTCTOR_VISIBILITY $csclassname() {
  824. swigCMemberPtr = null;
  825. }
  826. CPTR_VISIBILITY static string getCMemberPtr($csclassname obj) {
  827. return obj.swigCMemberPtr;
  828. }
  829. %}
  830. %enddef
  831. /* Set the default csbody typemaps to use internal visibility.
  832. Use the macros to change to public if using multiple modules. */
  833. SWIG_CSBODY_PROXY(internal, internal, SWIGTYPE)
  834. SWIG_CSBODY_TYPEWRAPPER(internal, protected, internal, SWIGTYPE)
  835. %typemap(csfinalize) SWIGTYPE %{
  836. ~$csclassname() {
  837. Dispose();
  838. }
  839. %}
  840. %typemap(csconstruct, excode=SWIGEXCODE,directorconnect="\n SwigDirectorConnect();") SWIGTYPE %{: this($imcall, true) {$excode$directorconnect
  841. }
  842. %}
  843. %typemap(csdestruct, methodname="Dispose", methodmodifiers="public") SWIGTYPE {
  844. lock(this) {
  845. if (swigCPtr.Handle != global::System.IntPtr.Zero) {
  846. if (swigCMemOwn) {
  847. swigCMemOwn = false;
  848. $imcall;
  849. }
  850. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
  851. }
  852. global::System.GC.SuppressFinalize(this);
  853. }
  854. }
  855. %typemap(csdestruct_derived, methodname="Dispose", methodmodifiers="public") SWIGTYPE {
  856. lock(this) {
  857. if (swigCPtr.Handle != global::System.IntPtr.Zero) {
  858. if (swigCMemOwn) {
  859. swigCMemOwn = false;
  860. $imcall;
  861. }
  862. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
  863. }
  864. global::System.GC.SuppressFinalize(this);
  865. base.Dispose();
  866. }
  867. }
  868. %typemap(directordisconnect, methodname="swigDirectorDisconnect") SWIGTYPE %{
  869. protected void $methodname() {
  870. swigCMemOwn = false;
  871. $imcall;
  872. }
  873. %}
  874. /* C# specific directives */
  875. #define %csconst(flag) %feature("cs:const","flag")
  876. #define %csconstvalue(value) %feature("cs:constvalue",value)
  877. #define %csenum(wrapapproach) %feature("cs:enum","wrapapproach")
  878. #define %csmethodmodifiers %feature("cs:methodmodifiers")
  879. #define %csnothrowexception %feature("except")
  880. #define %csattributes %feature("cs:attributes")
  881. %pragma(csharp) imclassclassmodifiers="class"
  882. %pragma(csharp) moduleclassmodifiers="public class"
  883. /* Some ANSI C typemaps */
  884. %apply unsigned long { size_t };
  885. %apply const unsigned long & { const size_t & };
  886. /* Array reference typemaps */
  887. %apply SWIGTYPE & { SWIGTYPE ((&)[ANY]) }
  888. %apply SWIGTYPE && { SWIGTYPE ((&&)[ANY]) }
  889. /* const pointers */
  890. %apply SWIGTYPE * { SWIGTYPE *const }
  891. /* csharp keywords */
  892. %include <csharpkw.swg>
  893. // Default enum handling
  894. %include <enums.swg>
  895. // For vararg handling in macros, from swigmacros.swg
  896. #define %arg(X...) X
  897. /*
  898. // Alternative char * typemaps.
  899. %pragma(csharp) imclasscode=%{
  900. public class SWIGStringMarshal : global::System.IDisposable {
  901. public readonly global::System.Runtime.InteropServices.HandleRef swigCPtr;
  902. public SWIGStringMarshal(string str) {
  903. swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, global::System.Runtime.InteropServices.Marshal.StringToHGlobalAnsi(str));
  904. }
  905. public virtual void Dispose() {
  906. global::System.Runtime.InteropServices.Marshal.FreeHGlobal(swigCPtr.Handle);
  907. global::System.GC.SuppressFinalize(this);
  908. }
  909. }
  910. %}
  911. %typemap(imtype, out="global::System.IntPtr") char *, char[ANY], char[] "global::System.Runtime.InteropServices.HandleRef"
  912. %typemap(out) char *, char[ANY], char[] %{ $result = $1; %}
  913. %typemap(csin) char *, char[ANY], char[] "new $imclassname.SWIGStringMarshal($csinput).swigCPtr"
  914. %typemap(csout, excode=SWIGEXCODE) char *, char[ANY], char[] {
  915. string ret = global::System.Runtime.InteropServices.Marshal.PtrToStringAnsi($imcall);$excode
  916. return ret;
  917. }
  918. %typemap(csvarin, excode=SWIGEXCODE2) char *, char[ANY], char[] %{
  919. set {
  920. $imcall;$excode
  921. } %}
  922. %typemap(csvarout, excode=SWIGEXCODE2) char *, char[ANY], char[] %{
  923. get {
  924. string ret = global::System.Runtime.InteropServices.Marshal.PtrToStringAnsi($imcall);$excode
  925. return ret;
  926. } %}
  927. */