mirror of https://github.com/tongzx/nt5src
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
621 B
24 lines
621 B
//****************************************************************************
|
|
//
|
|
// Module: UNIMDM
|
|
// File: SEC.H
|
|
//
|
|
// Copyright (c) 1992-1996, Microsoft Corporation, all rights reserved
|
|
//
|
|
// Revision History
|
|
//
|
|
//
|
|
// 3/27/96 JosephJ Created
|
|
//
|
|
//
|
|
// Description: Security-related helper functions
|
|
//
|
|
//****************************************************************************
|
|
PSECURITY_DESCRIPTOR AllocateSecurityDescriptor (
|
|
PSID_IDENTIFIER_AUTHORITY pSIA,
|
|
DWORD dwRID,
|
|
DWORD dwRights,
|
|
PSID pSidOwner,
|
|
PSID pSidGroup
|
|
);
|
|
void FreeSecurityDescriptor(PSECURITY_DESCRIPTOR pSD);
|