Is this just an arbitrary limit based on the number of items in the switch in line 70 in callback.c? So easy to add more, or something deeper?
Here's the break down of the gtk functions sqlite> select count(*) from functions where nprms>5; 97 sqlite> select count(*) from functions where nprms>6; 70 sqlite> select count(*) from functions where nprms>7; 46 sqlite> select count(*) from functions where nprms>8; 35 sqlite> select count(*) from functions where nprms>9; 24 sqlite> select count(*) from functions where nprms>10; 16 I suppose the functions could be called directly rather than reflecting them, but this give me a lot more work :) thx bd -- http://blackdog-haxe.blogspot.com/ http://www.igameware.com "It is no measure of health to be well adjusted to a profoundly sick society." --Jiddu Krishnamurti -- Neko : One VM to run them all (http://nekovm.org)
