aboutsummaryrefslogtreecommitdiffhomepage
path: root/ext/detours/samples/slept/slept.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/detours/samples/slept/slept.h')
-rw-r--r--ext/detours/samples/slept/slept.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/ext/detours/samples/slept/slept.h b/ext/detours/samples/slept/slept.h
new file mode 100644
index 0000000..9cc71d8
--- /dev/null
+++ b/ext/detours/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.