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.

46 lines
722 B

  1. #ifndef _EVTLOGP_H
  2. #define _EVTLOGP_H
  3. /*++
  4. Copyright (c) 1996 Microsoft Corporation
  5. Module Name:
  6. evtlog.h
  7. Abstract:
  8. Private header file for the eventlogging component for
  9. the NT Cluster Service
  10. Author:
  11. Sunita Shrivastava (sunitas) 5-Dec-1996.
  12. Revision History:
  13. --*/
  14. #define UNICODE 1
  15. #include "nt.h"
  16. #include "ntrtl.h"
  17. #include "nturtl.h"
  18. #include "service.h"
  19. #include "api_rpc.h"
  20. #define LOG_CURRENT_MODULE LOG_MODULE_EVTLOG
  21. DWORD EvpPropPendingEvents(
  22. IN DWORD dwEventInfoSize,
  23. IN PPACKEDEVENTINFO pPackedEventInfo);
  24. DWORD
  25. EvpClusterEventHandler(
  26. IN CLUSTER_EVENT Event,
  27. IN PVOID Context
  28. );
  29. #endif //_EVTLOGP_H
  30.