windows-nt/Source/XPSP1/NT/base/fs/utils/dfrg/inc/secattr.h
2020-09-26 16:20:57 +08:00

37 lines
779 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
);