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.
 
 
 
 
 
 

18 lines
364 B

#ifndef __REGEVENT_H
#define __REGEVENT_H
typedef VOID (*EVENT_CALLBACK)(BOOLEAN TimerOrWait,VOID *Context,VOID *Context2);
HANDLE
NhRegisterEvent(HANDLE hEvent,EVENT_CALLBACK CallBack,VOID *Context,VOID *Context2,ULONG TimeOut);
/*
VOID
NhInitializeCallBack(VOID);
VOID
NhShutdownCallBack(VOID);
*/
VOID
NhUnRegisterEvent(HANDLE WaitHandle);
#endif