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

  1. #ifndef __REGEVENT_H
  2. #define __REGEVENT_H
  3. typedef VOID (*EVENT_CALLBACK)(BOOLEAN TimerOrWait,VOID *Context,VOID *Context2);
  4. HANDLE
  5. NhRegisterEvent(HANDLE hEvent,EVENT_CALLBACK CallBack,VOID *Context,VOID *Context2,ULONG TimeOut);
  6. /*
  7. VOID
  8. NhInitializeCallBack(VOID);
  9. VOID
  10. NhShutdownCallBack(VOID);
  11. */
  12. VOID
  13. NhUnRegisterEvent(HANDLE WaitHandle);
  14. #endif