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.

46 lines
775 B

  1. /*++
  2. Copyright (c) 1997-1999 Microsoft Corporation
  3. Module Name:
  4. svc.h
  5. Abstract:
  6. Header file for definitions and structure for the NT Cluster
  7. Special generic services.
  8. Author:
  9. John Vert (jvert) 14-June-1997
  10. Revision History:
  11. --*/
  12. #ifndef _COMMONSVC_INCLUDED_
  13. #define _COMMONSVC_INCLUDED_
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. typedef struct _COMMON_DEPEND_SETUP {
  18. DWORD Offset;
  19. CLUSPROP_SYNTAX Syntax;
  20. DWORD Length;
  21. PVOID Value;
  22. } COMMON_DEPEND_SETUP, * PCOMMON_DEPEND_SETUP;
  23. // Localsvc.h must define CommonDependSetup using this structure.
  24. // Localsvc.h must define COMMON_CONTROL to generate control functions
  25. #ifdef _cplusplus
  26. }
  27. #endif
  28. #endif // ifndef _COMMONSVC_INCLUDED_