compilation fix: last commit broke non-Win64 compilation
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 22 May 2005 17:55:30 +0000 (17:55 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 22 May 2005 17:55:30 +0000 (17:55 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34268 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/dlmsw.cpp

index d9a49f3a1f67b560d3bdbea359a0d83d22f79c37..2e6d519eddf32be06c15cea071fe1889b350a6ab 100644 (file)
@@ -79,8 +79,15 @@ public:
         wxVersionDLL *verDLL;
     };
 
+    // TODO: fix EnumerateLoadedModules() to use EnumerateLoadedModules64()
+    #ifdef __WIN64__
+        typedef DWORD64 DWORD_32_64;
+    #else
+        typedef DWORD DWORD_32_64;
+    #endif
+
     static BOOL CALLBACK
-        EnumModulesProc(PSTR name, DWORD64 base, ULONG size, void *data);
+    EnumModulesProc(PSTR name, DWORD_32_64 base, ULONG size, void *data);
 };
 
 // ----------------------------------------------------------------------------
@@ -209,7 +216,7 @@ wxString wxVersionDLL::GetFileVersion(const wxString& filename) const
 /* static */
 BOOL CALLBACK
 wxDynamicLibraryDetailsCreator::EnumModulesProc(PSTR name,
-                                                DWORD64 base,
+                                                DWORD_32_64 base,
                                                 ULONG size,
                                                 void *data)
 {