|
From: Andre R. <and...@us...> - 2004-10-23 22:34:39
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5148/Frontier/Common/source Modified Files: launch.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: launch.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/launch.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** launch.c 17 Oct 2004 12:05:29 -0000 1.2 --- launch.c 23 Oct 2004 22:34:30 -0000 1.3 *************** *** 24,43 **** ******************************************************************************/ #ifdef MACVERSION - #include <AppleEvents.h> - #include <Processes.h> - #include <Aliases.h> #include <land.h> - #include <standard.h> #include "mac.h" #endif - #ifdef WIN95VERSION - #include "standard.h" - #include <tlhelp32.h> - #include <shellapi.h> - //#include "psapi.h" /* AR 2004-10-17: not needed anymore */ - #endif - #include "error.h" #include "memory.h" --- 24,35 ---- ******************************************************************************/ + #include "frontier.h" + #include "standard.h" + #ifdef MACVERSION #include <land.h> #include "mac.h" #endif #include "error.h" #include "memory.h" |