windows-nt/Source/XPSP1/NT/public/tst/common/inc/exclntmr.h
2020-09-26 16:20:57 +08:00

25 lines
560 B
C

//
// This is just the infor that exclntmr.c needs to work.
//
enum {
CLNT_TIMER_STATE_UNKNOWN, // unable to load dll or other error
CLNT_TIMER_STATE_RUNNING, // timer is running
CLNT_TIMER_STATE_EXPIRED // timer has expired
};
#define CLNTMR_DLL TEXT("clntmr.dll")
#ifdef __cplusplus
extern "C" {
#endif
DWORD WINAPI GetClnTmrState(BOOL bAddProcess, HMODULE *phClntTimerDll);
DWORD WINAPI QueryTestLoadInfo (DWORD * pdwThrottleLevel, DWORD * pdwSleepTime,
HMODULE *phClntTimerDll );
#ifdef __cplusplus
}
#endif