X-Git-Url: http://git.draconx.ca/gitweb/gob-dx.git/blobdiff_plain/509cf0693fc440c71bdd3e71ea8947a6b4eb0bcf..8fcffcc668f4782447beb64a823cc15961cea9ab:/src/test.gob diff --git a/src/test.gob b/src/test.gob index d603930..e31319b 100644 --- a/src/test.gob +++ b/src/test.gob @@ -41,9 +41,11 @@ void bubu(void); %} %header{ /* this should be in the header, just under bubu prototype */ +#define TEST_ARRAY 5 %} class Gtk:Weird:Button from Gtk:Button { + public int test_array[TEST_ARRAY]; public int i; argument INT i set { self->i = ARG; } get { ARG = self->i; } ;