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.

49 lines
718 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. event.h
  5. Abstract:
  6. Event definitions
  7. Author:
  8. Charlie Wickham (charlwi) 17-Feb-1997
  9. Revision History:
  10. --*/
  11. #ifndef _EVENT_H_
  12. #define _EVENT_H_
  13. /* Prototypes */
  14. NTSTATUS
  15. CnSetEventMask(
  16. IN PCN_FSCONTEXT FsContext,
  17. IN PCLUSNET_SET_EVENT_MASK_REQUEST EventRequest
  18. );
  19. NTSTATUS
  20. CnGetNextEvent(
  21. IN PIRP Irp,
  22. IN PIO_STACK_LOCATION IrpSp
  23. );
  24. NTSTATUS
  25. CnIssueEvent(
  26. CLUSNET_EVENT_TYPE Event,
  27. CL_NODE_ID NodeId OPTIONAL,
  28. CL_NETWORK_ID NetworkId OPTIONAL
  29. );
  30. /* End Prototypes */
  31. #endif /* _EVENT_H_ */
  32. /* end event.h */