PageRenderTime 31ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/Examples/test-suite/typemap_manyargs.i

#
Swig | 20 lines | 18 code | 2 blank | 0 comment | 0 complexity | d99756c351a9c38fb441f37bf73f0747 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. %module typemap_manyargs
  2. %typemap(in,numinputs=0) (int* a1, int* a2, int* a3, int* a4, int* a5, int* a6, int *a7, int *a8, int *a9, int *a10) (int temp1,int temp2,int temp3,int temp4,int temp5,int temp6,int temp7,int temp8, int temp9, int temp10)
  3. {
  4. $1 = &temp1; // the code generate for this is arg2 = &temp1;
  5. $2 = &temp2; // the code generate for this is arg3 = &temp2;
  6. $3 = &temp3; // and so on...
  7. $4 = &temp4;
  8. $5 = &temp5;
  9. $6 = &temp6;
  10. $7 = &temp7;
  11. $8 = &temp8;
  12. $9 = &temp9;
  13. $10 = &temp10; // the code generated for this was arg20 = &temp10; and arg20 does not exist.
  14. int $10_ptr = 0; // Was arg20_ptr
  15. }
  16. %inline %{
  17. void my_c_function(char * filename,int* a1, int* a2, int* a3, int* a4, int* a5, int* a6, int *a7, int *a8, int *a9, int *a10) {}
  18. %}