Leaked source code of windows server 2003
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.

54 lines
701 B

  1. /*++
  2. Copyright(C) Microsoft Corporation 1997 - 1999
  3. File:
  4. uttime.h
  5. Abstract:
  6. Timer management utility API
  7. History:
  8. 02/22/99 FredCh Created
  9. --*/
  10. #ifndef _UT_TIMER_H_
  11. #define _UT_TIMER_H_
  12. #ifdef __cplusplus
  13. extern "C"
  14. {
  15. #endif
  16. HANDLE
  17. UTCreateTimer(
  18. HWND hWnd, // handle of window for timer messages
  19. DCUINT nIDEvent, // timer identifier
  20. DCUINT uElapse ); // time-out value
  21. DCBOOL
  22. UTStartTimer(
  23. HANDLE hTimer );
  24. DCBOOL
  25. UTStopTimer(
  26. HANDLE hTimer );
  27. DCBOOL
  28. UTDeleteTimer(
  29. HANDLE hTimer );
  30. #ifdef __cplusplus
  31. }
  32. #endif
  33. #endif