1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-24 17:49:52 +01:00

add checks for windows ME build

This commit is contained in:
FunkyFr3sh 2024-09-28 19:57:11 +02:00
parent beae3c5fb7
commit 8b211a73d7

View File

@ -47,8 +47,10 @@ BOOL WINAPI DllMain(HANDLE hDll, DWORD dwReason, LPVOID lpReserved)
cfg_load(); cfg_load();
#if (_WIN32_WINNT >= _WIN32_WINNT_WIN2K)
g_dbg_exception_handle = g_dbg_exception_handle =
AddVectoredExceptionHandler(1, (PVECTORED_EXCEPTION_HANDLER)dbg_vectored_exception_handler); AddVectoredExceptionHandler(1, (PVECTORED_EXCEPTION_HANDLER)dbg_vectored_exception_handler);
#endif
char buf[1024]; char buf[1024];
@ -146,8 +148,10 @@ BOOL WINAPI DllMain(HANDLE hDll, DWORD dwReason, LPVOID lpReserved)
dinput_hook_exit(); dinput_hook_exit();
hook_exit(); hook_exit();
#if (_WIN32_WINNT >= _WIN32_WINNT_WIN2K)
if (g_dbg_exception_handle) if (g_dbg_exception_handle)
RemoveVectoredExceptionHandler(g_dbg_exception_handle); RemoveVectoredExceptionHandler(g_dbg_exception_handle);
#endif
break; break;
} }