|
From: Andre R. <and...@us...> - 2006-03-09 11:08:55
|
Update of /cvsroot/frontierkernel/Frontier/Common/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22903/Common/headers Modified Files: CallMachOFrameWork.h sysshellcall.h Log Message: Moved unixshellcall from CallMachOFrameWork.c to sysshellcall.c Index: sysshellcall.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/sysshellcall.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** sysshellcall.h 9 Mar 2006 09:49:14 -0000 1.1 --- sysshellcall.h 9 Mar 2006 11:08:50 -0000 1.2 *************** *** 26,29 **** ******************************************************************************/ ! boolean winshellcall (Handle hcommand, Handle hreturn); --- 26,39 ---- ******************************************************************************/ ! #if defined(MACVERSION) && (TARGET_API_MAC_CARBON == 1) ! ! boolean unixshellcall (Handle, Handle); ! ! #endif + + #ifdef WIN95VERSION + + boolean winshellcall (Handle, Handle); + + #endif Index: CallMachOFrameWork.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/CallMachOFrameWork.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** CallMachOFrameWork.h 29 Jan 2006 23:25:59 -0000 1.7 --- CallMachOFrameWork.h 9 Mar 2006 11:08:50 -0000 1.8 *************** *** 29,43 **** #define callmachoframework - /* 2006-01-29 creedon - define the following for CodeWarrior compilation because it doesn't have these defined in its headers, as Xcode does */ - - #ifdef __MWERKS__ - #define F_GETFL 3 /* get file status flags */ - #define F_SETFL 4 /* set file status flags */ - #define O_NONBLOCK 0x0004 /* no delay */ - #endif - - - extern boolean unixshellcall (Handle hcommand, Handle hreturn); - extern OSStatus LoadFrameworkBundle(CFStringRef framework, CFBundleRef *bundlePtr); --- 29,32 ---- |