From f7af0f923f3c79b03493b2082773589b55179d57 Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Tue, 27 Jun 2023 09:38:11 -0500 Subject: [PATCH] fixed: windows compilation --- shared/include/small_windows.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shared/include/small_windows.h b/shared/include/small_windows.h index f1a0769d..2e7fa541 100644 --- a/shared/include/small_windows.h +++ b/shared/include/small_windows.h @@ -464,6 +464,6 @@ GB_DLL_IMPORT int BCryptCloseAlgorithmProvider( unsigned long dwFlags ); -GB_DLL_IMPORT void WakeByAddressSingle(PVOID Address); -GB_DLL_IMPORT BOOL WaitOnAddress(volatile PVOID Address, PVOID compareAddress, size_t addressSize, DWORD milliseconds); +GB_DLL_IMPORT void WakeByAddressSingle(void * Address); +GB_DLL_IMPORT BOOL WaitOnAddress(volatile void * Address, void * compareAddress, size_t addressSize, DWORD milliseconds); -- 2.25.1