[*] 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
};
inline BOOL(_stdcall *pWaitOnAddress)(
inline BOOL(__stdcall *pWaitOnAddress)(
volatile VOID * Address,
PVOID CompareAddress,
SIZE_T AddressSize,
DWORD dwMilliseconds
);
inline void(_stdcall *pWakeByAddressSingle)(
inline void(__stdcall *pWakeByAddressSingle)(
PVOID Address
);
inline void(_stdcall *pWakeByAddressAll)(
inline void(__stdcall *pWakeByAddressAll)(
PVOID Address
);
inline DWORD(_stdcall *pNtDelayExecution)(
inline DWORD(__stdcall *pNtDelayExecution)(
BOOLEAN Alertable,
PLARGE_INTEGER DelayInterval
);