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.

53 lines
744 B

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. clusrtlp.h
  5. Abstract:
  6. Private header file for the NT Cluster RTL library
  7. Author:
  8. John Vert (jvert) 1-Dec-1995
  9. Revision History:
  10. --*/
  11. #include "nt.h"
  12. #include "ntrtl.h"
  13. #include "nturtl.h"
  14. #include "windows.h"
  15. #include "cluster.h"
  16. #include "stdio.h"
  17. #include "stdlib.h"
  18. extern HANDLE LocalEventLog;
  19. #define LOG_CURRENT_MODULE LOG_MODULE_CLRTL
  20. // Adding watchdog struct definitions.....
  21. typedef struct _WATCHDOGPAR{
  22. HANDLE wTimer;
  23. LPWSTR par;
  24. DWORD threadId;
  25. } WATCHDOGPAR, *PWATCHDOGPAR;
  26. VOID
  27. ClRtlpFlushLogBuffers(
  28. VOID
  29. );
  30. ULONG
  31. WppAutoStart(
  32. IN LPCWSTR ProductName
  33. );
  34. VOID
  35. ClRtlPrintf(
  36. PCHAR FormatString,
  37. ...
  38. );