|
From: John M M. <jo...@us...> - 2004-08-03 02:40:07
|
Update of /cvsroot/squeak/squeak/platforms/Mac OS/vm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27137/squeak/platforms/Mac OS/vm Modified Files: sqMacExternalPrims.c Log Message: 3.7.4b3 Compiler warning reduction process. Return 0 if required, flag or removed unused variables, fix ambigous warning messages Index: sqMacExternalPrims.c =================================================================== RCS file: /cvsroot/squeak/squeak/platforms/Mac OS/vm/sqMacExternalPrims.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** sqMacExternalPrims.c 2 Dec 2003 04:52:11 -0000 1.6 --- sqMacExternalPrims.c 3 Aug 2004 02:39:59 -0000 1.7 *************** *** 33,40 **** char pluginDirPath[1000]; CFragConnectionID libHandle; Ptr mainAddr; Str255 errorMsg,tempPluginName; OSErr err; ! /* first, look in the "<Squeak VM directory>Plugins" directory for the library */ getVMPathWithEncoding(pluginDirPath,gCurrentVMEncoding); --- 33,43 ---- char pluginDirPath[1000]; CFragConnectionID libHandle; + #ifndef BROWSERPLUGIN + #if !defined ( __APPLE__ ) && !defined ( __MACH__ ) Ptr mainAddr; Str255 errorMsg,tempPluginName; OSErr err; ! #endif ! #endif /* first, look in the "<Squeak VM directory>Plugins" directory for the library */ getVMPathWithEncoding(pluginDirPath,gCurrentVMEncoding); *************** *** 174,178 **** int ioFindExternalFunctionIn(char *lookupName, int moduleHandle) { void * functionPtr = 0; - OSErr err; CFStringRef theString; --- 177,180 ---- |