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.
 
 
 
 
 
 

40 lines
600 B

//Copyright (c) 1998 - 1999 Microsoft Corporation
/*
* Acl.h
*
* Routine to add the TERMINAL_SERVER_RID to any object.
*
* Breen Hagan - 5/4/99
*/
#ifndef __TSOC_ACL_H__
#define __TSOC_ACL_H__
//
// Includes
//
#include <aclapi.h>
//
// Function Prototypes
//
BOOL
AddTerminalServerUserToSD(
PSECURITY_DESCRIPTOR *ppSd,
DWORD NewAccess,
PACL *ppDacl
);
#ifdef LATERMUCHLATER
BOOL
AddTerminalServerUserToObjectsSecurityDescriptor(
HANDLE hObject,
SE_OBJECT_TYPE ObjectType,
DWORD NewAccess
);
#endif
#endif