Crash fix from Tim Kosse.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40656 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell
2006-08-17 22:57:14 +00:00
parent 286b8de534
commit b9d4a1b769

View File

@@ -1171,13 +1171,13 @@ bool wxIsPlatform64Bit()
typedef BOOL (WINAPI *IsWow64Process_t)(HANDLE, BOOL *);
wxDynamicLibrary dllKernel32(_T("kernel32.dll"));
IsWow64Process_t *pfnIsWow64Process =
(IsWow64Process_t *)dllKernel32.RawGetSymbol(_T("IsWow64Process"));
IsWow64Process_t pfnIsWow64Process =
(IsWow64Process_t)dllKernel32.RawGetSymbol(_T("IsWow64Process"));
BOOL wow64 = FALSE;
if ( pfnIsWow64Process )
{
(*pfnIsWow64Process)(::GetCurrentProcess(), &wow64);
pfnIsWow64Process(::GetCurrentProcess(), &wow64);
}
//else: running under a system without Win64 support