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

/*++
Copyright(C) Microsoft Corporation 1997 - 1999
File:
uttime.h
Abstract:
Timer management utility API
History:
02/22/99 FredCh Created
--*/
#ifndef _UT_TIMER_H_
#define _UT_TIMER_H_
#ifdef __cplusplus
extern "C"
{
#endif
HANDLE
UTCreateTimer(
HWND hWnd, // handle of window for timer messages
DCUINT nIDEvent, // timer identifier
DCUINT uElapse ); // time-out value
DCBOOL
UTStartTimer(
HANDLE hTimer );
DCBOOL
UTStopTimer(
HANDLE hTimer );
DCBOOL
UTDeleteTimer(
HANDLE hTimer );
#ifdef __cplusplus
}
#endif
#endif