|
From: Andre R. <and...@us...> - 2006-03-10 14:01:15
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3550/Common/source Modified Files: sysshellcall.c Log Message: Replace INVALID_FILE_ATTRIBUTES, not defined in Win32 SDK comming with Metrowerks CodeWarrior 8, with its value -1, obtained from more recent Win32 SDK headers. Index: sysshellcall.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/sysshellcall.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** sysshellcall.c 10 Mar 2006 13:43:17 -0000 1.6 --- sysshellcall.c 10 Mar 2006 14:01:11 -0000 1.7 *************** *** 269,273 **** unlockhandle (hshell); ! return (attr != INVALID_FILE_ATTRIBUTES); } /*cmdshellexists*/ --- 269,273 ---- unlockhandle (hshell); ! return (attr != -1); /*!INVALID_FILE_ATTRIBUTES*/ } /*cmdshellexists*/ |