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.

37 lines
695 B

  1. /*++
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. SeUtil.h
  5. Abstract:
  6. This header exposes various security utility functions.
  7. Author:
  8. Adrian J. Oney - April 23, 2002
  9. Revision History:
  10. --*/
  11. NTSTATUS
  12. SeUtilSecurityInfoFromSecurityDescriptor(
  13. IN PSECURITY_DESCRIPTOR SecurityDescriptor,
  14. OUT BOOLEAN *DaclFromDefaultSource,
  15. OUT PSECURITY_INFORMATION SecurityInformation
  16. );
  17. #ifndef _KERNELIMPLEMENTATION_
  18. VOID
  19. SeSetSecurityAccessMask(
  20. IN SECURITY_INFORMATION SecurityInformation,
  21. OUT ACCESS_MASK *DesiredAccess
  22. );
  23. #endif // _KERNELIMPLEMENTATION_