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.

24 lines
645 B

  1. //****************************************************************************
  2. //
  3. // Module: UNIMDM
  4. // File: SEC.H
  5. //
  6. // Copyright (c) 1992-1996, Microsoft Corporation, all rights reserved
  7. //
  8. // Revision History
  9. //
  10. //
  11. // 3/27/96 JosephJ Created
  12. //
  13. //
  14. // Description: Security-related helper functions
  15. //
  16. //****************************************************************************
  17. PSECURITY_DESCRIPTOR AllocateSecurityDescriptor (
  18. PSID_IDENTIFIER_AUTHORITY pSIA,
  19. DWORD dwRID,
  20. DWORD dwRights,
  21. PSID pSidOwner,
  22. PSID pSidGroup
  23. );
  24. void FreeSecurityDescriptor(PSECURITY_DESCRIPTOR pSD);