|
From: Andre R. <and...@us...> - 2004-10-23 21:43:12
|
Update of /cvsroot/frontierkernel/Frontier/Common/IowaRuntime/Source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24722/Frontier/Common/IowaRuntime/Source Modified Files: iowaruntime.c Log Message: Sanitized global includes. Include frontier.h in all source files. Move inclusion of system header files into osincludes.h. Index: iowaruntime.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/IowaRuntime/Source/iowaruntime.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** iowaruntime.c 9 Oct 2004 20:20:25 -0000 1.1 --- iowaruntime.c 23 Oct 2004 21:43:04 -0000 1.2 *************** *** 24,27 **** --- 24,31 ---- ******************************************************************************/ + #include "frontier.h" + #include "standard.h" + + #include "shelltypes.h" #include <appletdefs.h> #include <iac.h> *************** *** 43,46 **** --- 47,52 ---- #include "iowascript.h" + #include "quickdraw.h" + #ifndef cutCmd *************** *** 2272,2276 **** //Code change by Timothy Paustian Friday, July 21, 2000 10:36:08 PM //create the UPP for the apple event handler ! #if TARGET_API_MAC_CARBON if (appleEventHandlerDesc == nil) appleEventHandlerDesc = NewAEEventHandlerUPP(appleEventHandler); --- 2278,2282 ---- //Code change by Timothy Paustian Friday, July 21, 2000 10:36:08 PM //create the UPP for the apple event handler ! #if TARGET_API_MAC_CARBON && TARGET_RT_MAC_CFM if (appleEventHandlerDesc == nil) appleEventHandlerDesc = NewAEEventHandlerUPP(appleEventHandler); |