Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
560 B

  1. //
  2. // This is just the infor that exclntmr.c needs to work.
  3. //
  4. enum {
  5. CLNT_TIMER_STATE_UNKNOWN, // unable to load dll or other error
  6. CLNT_TIMER_STATE_RUNNING, // timer is running
  7. CLNT_TIMER_STATE_EXPIRED // timer has expired
  8. };
  9. #define CLNTMR_DLL TEXT("clntmr.dll")
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. DWORD WINAPI GetClnTmrState(BOOL bAddProcess, HMODULE *phClntTimerDll);
  14. DWORD WINAPI QueryTestLoadInfo (DWORD * pdwThrottleLevel, DWORD * pdwSleepTime,
  15. HMODULE *phClntTimerDll );
  16. #ifdef __cplusplus
  17. }
  18. #endif