mirror of https://github.com/tongzx/nt5src
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.
43 lines
945 B
43 lines
945 B
/********************************************************************/
|
|
/** Copyright(c) 1989 Microsoft Corporation. **/
|
|
/********************************************************************/
|
|
|
|
//***
|
|
//
|
|
// Filename: timer.h
|
|
//
|
|
// Description: Contains prototypes for the timer functionality.
|
|
//
|
|
// History:
|
|
// Nov 11,1993. NarenG Created original version.
|
|
//
|
|
|
|
DWORD
|
|
TimerThread(
|
|
IN LPVOID arg
|
|
);
|
|
|
|
VOID
|
|
TimerTick(
|
|
OUT BOOL * pfQueueEmpty
|
|
);
|
|
|
|
DWORD
|
|
InsertInTimerQ(
|
|
IN DWORD dwPortId,
|
|
IN HPORT hPort,
|
|
IN DWORD Id,
|
|
IN DWORD Protocol,
|
|
IN BOOL fAuthenticator,
|
|
IN TIMER_EVENT_TYPE EventType,
|
|
IN DWORD Timeout
|
|
);
|
|
|
|
VOID
|
|
RemoveFromTimerQ(
|
|
IN DWORD dwPortId,
|
|
IN DWORD Id,
|
|
IN DWORD Procotol,
|
|
IN BOOL fAuthenticator,
|
|
IN TIMER_EVENT_TYPE EventType
|
|
);
|