[*] This was bothering my autism for a while and I need to rebuild anyway.

This commit is contained in:
Reece Wilson 2023-07-13 20:00:28 +01:00
parent 8a4fc0d9c3
commit c4806f8e81

View File

@ -34,22 +34,22 @@ namespace Aurora
ThreadInformationClassMax ThreadInformationClassMax
}; };
inline BOOL(_stdcall *pWaitOnAddress)( inline BOOL(__stdcall *pWaitOnAddress)(
volatile VOID * Address, volatile VOID * Address,
PVOID CompareAddress, PVOID CompareAddress,
SIZE_T AddressSize, SIZE_T AddressSize,
DWORD dwMilliseconds DWORD dwMilliseconds
); );
inline void(_stdcall *pWakeByAddressSingle)( inline void(__stdcall *pWakeByAddressSingle)(
PVOID Address PVOID Address
); );
inline void(_stdcall *pWakeByAddressAll)( inline void(__stdcall *pWakeByAddressAll)(
PVOID Address PVOID Address
); );
inline DWORD(_stdcall *pNtDelayExecution)( inline DWORD(__stdcall *pNtDelayExecution)(
BOOLEAN Alertable, BOOLEAN Alertable,
PLARGE_INTEGER DelayInterval PLARGE_INTEGER DelayInterval
); );