|
From: Andre R. <and...@us...> - 2004-10-24 17:12:32
|
Update of /cvsroot/frontierkernel/Frontier/Common/SystemHeaders In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26455/Frontier/Common/SystemHeaders Modified Files: standard.h Log Message: Switch argument in typedef of callback function pointer from ... to void. Index: standard.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/SystemHeaders/standard.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** standard.h 24 Oct 2004 12:29:31 -0000 1.3 --- standard.h 24 Oct 2004 17:12:23 -0000 1.4 *************** *** 266,276 **** typedef Rect *ptrrect; ! #ifdef MACVERSION ! typedef boolean (*callback) (...); ! #endif ! ! #ifdef WIN95VERSION ! typedef boolean (*callback) (void); ! #endif typedef unsigned char byte, *ptrbyte; --- 266,270 ---- typedef Rect *ptrrect; ! typedef boolean (*callback) (void); /* 2004-10-24 aradke: was ... instead of void on Mac */ typedef unsigned char byte, *ptrbyte; |