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.

36 lines
779 B

  1. /**************************************************************************************************
  2. FILENAME: SecAttr.h
  3. COPYRIGHT 2001 Microsoft Corporation and Executive Software International, Inc.
  4. DESCRIPTION:
  5. Security attribute related routines
  6. **************************************************************************************************/
  7. typedef enum _SecurityAttributeType
  8. {
  9. esatUndefined = 0,
  10. esatMutex,
  11. esatSemaphore,
  12. esatEvent,
  13. esatFile
  14. } SecurityAttributeType;
  15. BOOL
  16. ConstructSecurityAttributes(
  17. PSECURITY_ATTRIBUTES psaSecurityAttributes,
  18. SecurityAttributeType eSaType,
  19. BOOL bIncludeBackupOperator
  20. );
  21. VOID
  22. CleanupSecurityAttributes(
  23. PSECURITY_ATTRIBUTES psaSecurityAttributes
  24. );