|
From: Andre R. <and...@us...> - 2004-10-24 17:58:24
|
Update of /cvsroot/frontierkernel/Frontier/Common/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4923/Frontier/Common/headers Modified Files: about.h Log Message: Include process.h and use hdlprocessthread in declaration of aboutsetthreadstring to make Xcode/GCC happy. Index: about.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/about.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** about.h 9 Oct 2004 20:50:43 -0000 1.1 --- about.h 24 Oct 2004 17:58:16 -0000 1.2 *************** *** 24,29 **** --- 24,34 ---- ******************************************************************************/ + #ifndef aboutinclude #define aboutinclude + #ifndef processinclude + #include "process.h" + #endif + /*prototypes*/ *************** *** 41,47 **** extern boolean aboutsetmiscstring (bigstring); ! extern boolean aboutsetthreadstring (struct tythreadglobals **, boolean); boolean aboutstatsshowing (void); void aboutsetstatsflag (boolean fl); --- 46,54 ---- extern boolean aboutsetmiscstring (bigstring); ! extern boolean aboutsetthreadstring (hdlprocessthread, boolean); boolean aboutstatsshowing (void); void aboutsetstatsflag (boolean fl); + + #endif /*aboutinclude*/ |