X-Git-Url: http://git.draconx.ca/gitweb/gob-dx.git/blobdiff_plain/40647d7b7b7fbeae828e0a032a3c3a5f204cdfa8..f31590988781d77ff5249987801d03a986368ca2:/src/test.gob diff --git a/src/test.gob b/src/test.gob index b5b180e..0152a00 100644 --- a/src/test.gob +++ b/src/test.gob @@ -5,6 +5,7 @@ the file itself. So you can this way select where the include file is at */ #include "gtk-weird-button.h" +#include "gtk-weird-button-private.h" static void jjjj(void); %} @@ -19,6 +20,7 @@ class Gtk:Weird:Button from Gtk:Button { private int j; public GtkWidget * h; public char *bleh; + public double array[23][18]; init(object) { GtkWeirdButton *but = GTK_WEIRD_BUTTON(object); @@ -67,15 +69,21 @@ class Gtk:Weird:Button from Gtk:Button { signal first private NONE (NONE) void googlegoogle2(self) { + int array[5][8][9]={{{0}}}; puts("TEST2"); - testprivvirtual(self); + testprivvirtual(self,array); } virtual private - void testprivvirtual(self) + void testprivvirtual(self, int some_array[5][8][9]) { puts("TEST3"); googlegoogle(self); } + signal first NONE (POINTER) + void testarrsignal(self, long arr[8]) + { + puts("TEST2"); + } } %{