diff options
Diffstat (limited to 'samples/slept/slept.h')
-rw-r--r-- | samples/slept/slept.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/samples/slept/slept.h b/samples/slept/slept.h new file mode 100644 index 0000000..9cc71d8 --- /dev/null +++ b/samples/slept/slept.h @@ -0,0 +1,18 @@ +////////////////////////////////////////////////////////////////////////////// +// +// Detour Test Program (slept.h of slept.dll) +// +// Microsoft Research Detours Package +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// +#pragma once + +DWORD WINAPI UntimedSleepEx(DWORD dwMilliseconds, BOOL bAlertable); +DWORD WINAPI TimedSleepEx(DWORD dwMilliseconds, BOOL bAlertable); +DWORD WINAPI GetSleptTicks(VOID); +DWORD WINAPI TestTicks(VOID); +DWORD WINAPI TestTicksEx(DWORD Add); + +// +///////////////////////////////////////////////////////////////// End of File. |