More 32 suffixes nuked

Francois Gouget fgouget at free.fr
Thu May 10 22:56:49 CDT 2001



   Remove the *last two* incorrect 32 suffixes. 

(Famous last words I know, but I checked, and it might be true for once)


Changelog:

  * include/imagehlp.h,
    include/winbase.h

    Removed some more obsolete 32 suffixes


--
Francois Gouget         fgouget at free.fr        http://fgouget.free.fr/
                  In a world without fences who needs Gates?
-------------- next part --------------
Index: include/imagehlp.h
===================================================================
RCS file: /home/cvs/wine/wine/include/imagehlp.h,v
retrieving revision 1.10
diff -u -r1.10 imagehlp.h
--- include/imagehlp.h	2000/06/11 20:07:59	1.10
+++ include/imagehlp.h	2001/05/11 03:47:36
@@ -90,7 +90,7 @@
 #define SYMF_OMAP_GENERATED   0x00000001
 #define SYMF_OMAP_MODIFIED    0x00000002
 
-typedef enum _SYM_TYPE {
+typedef enum {
   SymNone,
   SymCoff,
   SymCv,
@@ -98,7 +98,7 @@
   SymExport,
   SymDeferred,
   SymSym        /* .sym file */
-} SYM_TYPE32;
+} SYM_TYPE;
 
 #define UNDNAME_COMPLETE               0x0000
 #define UNDNAME_NO_LEADING_UNDERSCORES 0x0001
@@ -245,7 +245,7 @@
   DWORD      TimeDateStamp;
   DWORD      CheckSum;
   DWORD      NumSyms;
-  SYM_TYPE32 SymType;
+  SYM_TYPE   SymType;
   CHAR       ModuleName[32];
   CHAR       ImageName[256];
   CHAR       LoadedImageName[256];
Index: include/winbase.h
===================================================================
RCS file: /home/cvs/wine/wine/include/winbase.h,v
retrieving revision 1.106
diff -u -r1.106 winbase.h
--- include/winbase.h	2001/03/13 23:33:26	1.106
+++ include/winbase.h	2001/05/11 03:50:10
@@ -1828,7 +1828,7 @@
 BOOL        WINAPI WriteProfileStringA(LPCSTR,LPCSTR,LPCSTR);
 BOOL        WINAPI WriteProfileStringW(LPCWSTR,LPCWSTR,LPCWSTR);
 #define     WriteProfileString WINELIB_NAME_AW(WriteProfileString)
-#define     Yield32()
+#define     Yield()
 LPSTR       WINAPI lstrcatA(LPSTR,LPCSTR);
 LPWSTR      WINAPI lstrcatW(LPWSTR,LPCWSTR);
 #define     lstrcat WINELIB_NAME_AW(lstrcat)


More information about the wine-patches mailing list