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.

43 lines
893 B

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1998 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // AclUtils.h
  7. //
  8. // Abstract:
  9. // Various Access Control List (ACL) utilities.
  10. //
  11. // Implementation File:
  12. // AclUtils.cpp
  13. //
  14. // Author:
  15. // Galen Barbee (galenb) February 11, 1998
  16. //
  17. // Revision History:
  18. //
  19. // Notes:
  20. //
  21. /////////////////////////////////////////////////////////////////////////////
  22. #ifndef _ACLUTILS_H
  23. #define _ACLUTILS_H
  24. #ifndef _ACLBASE_H
  25. #include "AclBase.h"
  26. #endif
  27. #ifndef ARRAYSIZE
  28. #define ARRAYSIZE(x) (sizeof(x)/sizeof(x[0]))
  29. #endif
  30. /////////////////////////////////////////////////////////////////////////////
  31. // Type Definitions
  32. /////////////////////////////////////////////////////////////////////////////
  33. extern HPROPSHEETPAGE
  34. CreateClusterSecurityPage(
  35. CSecurityInformation* psecinfo
  36. );
  37. #endif //_ACLUTILS_H