[ros-diffs] [cfinck] 32087: Get it to compile warning-free under MSVC (at /W3)

cfinck at svn.reactos.org cfinck at svn.reactos.org
Sat Feb 2 13:05:06 CET 2008


Author: cfinck
Date: Sat Feb  2 15:05:05 2008
New Revision: 32087

URL: http://svn.reactos.org/svn/reactos?rev=32087&view=rev
Log:
Get it to compile warning-free under MSVC (at /W3)

Modified:
    trunk/reactos/tools/cabman/cabinet.h
    trunk/reactos/tools/cabman/dfp.cxx

Modified: trunk/reactos/tools/cabman/cabinet.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/cabman/cabinet.h?rev=32087&r1=32086&r2=32087&view=diff
==============================================================================
--- trunk/reactos/tools/cabman/cabinet.h (original)
+++ trunk/reactos/tools/cabman/cabinet.h Sat Feb  2 15:05:05 2008
@@ -33,7 +33,9 @@
 #define DIR_SEPARATOR_CHAR '\\'
 #define DIR_SEPARATOR_STRING "\\"
 
-#define strcasecmp strcmpi
+#define strcasecmp _strcmpi
+#define strdup _strdup
+
 #define AllocateMemory(size) HeapAlloc(GetProcessHeap(), 0, size)
 #define FreeMemory(buffer) HeapFree(GetProcessHeap(), 0, buffer)
 #define FILEHANDLE HANDLE

Modified: trunk/reactos/tools/cabman/dfp.cxx
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/cabman/dfp.cxx?rev=32087&r1=32086&r2=32087&view=diff
==============================================================================
--- trunk/reactos/tools/cabman/dfp.cxx (original)
+++ trunk/reactos/tools/cabman/dfp.cxx Sat Feb  2 15:05:05 2008
@@ -29,7 +29,7 @@
     return size;
 }
 #define ReadFileData(handle, buffer, size, bytesread) _ReadFileData(handle, buffer, size, bytesread)
-static bool _ReadFileData(FILEHANDLE handle, void* buffer, ULONG size, PULONG bytesread)
+static BOOL _ReadFileData(FILEHANDLE handle, void* buffer, ULONG size, PULONG bytesread)
 {
     return ReadFile(handle, buffer, size, (LPDWORD)bytesread, NULL);
 }




More information about the Ros-diffs mailing list