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.
|
|
/********************************************************************/ /** Copyright(c) 1995 Microsoft Corporation. **/ /********************************************************************/
//***
//
// Filename: timer.h
//
// Description: Prototypes of procedures in timer.c
//
// History: May 11,1995 NarenG Created original version.
//
//
// Timeout function handler type
//
typedef VOID (* TIMEOUT_HANDLER)(LPVOID lpObject);
DWORD TimerQInitialize( VOID );
VOID TimerQDelete( VOID );
DWORD TimerQThread( IN LPVOID arg );
VOID TimerQTick( VOID );
DWORD TimerQInsert( IN HANDLE hObject, IN DWORD dwTimeout, IN TIMEOUT_HANDLER pfuncTimeoutHandler );
VOID TimerQRemove( IN HANDLE hObject, IN TIMEOUT_HANDLER pfuncTimeoutHandler );
|