2025-04-27 07:49:33 -04:00

37 lines
815 B
C

/**************************************************************************************************
FILENAME: SecAttr.h
COPYRIGHT© 2001 Microsoft Corporation and Executive Software International, Inc.
DESCRIPTION:
Security attribute related routines
**************************************************************************************************/
typedef enum _SecurityAttributeType
{
esatUndefined = 0,
esatMutex,
esatSemaphore,
esatEvent,
esatFile
} SecurityAttributeType;
BOOL
ConstructSecurityAttributes(
PSECURITY_ATTRIBUTES psaSecurityAttributes,
SecurityAttributeType eSaType,
BOOL bIncludeBackupOperator
);
VOID
CleanupSecurityAttributes(
PSECURITY_ATTRIBUTES psaSecurityAttributes
);