mirror of
https://github.com/vosen/ZLUDA.git
synced 2025-04-24 09:34:44 +00:00
18 lines
572 B
C
Vendored
18 lines
572 B
C
Vendored
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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.
|