Enlightenment CVS committal Author : raster Project : e17 Module : libs/embryo
Dir : e17/libs/embryo/examples Modified Files: test.inc test.sma Log Message: fix some typedefs... and cell arrays... =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/embryo/examples/test.inc,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- test.inc 24 Mar 2004 14:32:04 -0000 1.2 +++ test.inc 9 Dec 2004 05:10:42 -0000 1.3 @@ -4,4 +4,4 @@ #define TEST_INC native printf(format[], ...); -native call(string[], string2[], val); +native native_rec(arg1, str[], arg2); =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/embryo/examples/test.sma,v retrieving revision 1.8 retrieving revision 1.9 diff -u -3 -r1.8 -r1.9 --- test.sma 9 Dec 2004 02:46:31 -0000 1.8 +++ test.sma 9 Dec 2004 05:10:42 -0000 1.9 @@ -102,9 +102,19 @@ printf("\n\n"); + printf("native_rec(1, 77)\n"); + native_rec(1, "Smelly", 77); + printf("native_rec() done\n"); + return 7; } +public rec1(arg1, str[], arg2) +{ + printf("arg1=%i str=%s arg2=%i\n", arg1, str, arg2); + return native_rec(arg1 + 1, str, arg2); +} + vargs(a, b, ...) { printf("ARGS...\n"); ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://productguide.itmanagersjournal.com/ _______________________________________________ enlightenment-cvs mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs