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.
33 lines
681 B
33 lines
681 B
|
|
//+----------------------------------------------------------------------------
|
|
//
|
|
// Copyright (C) 1998, Microsoft Corporation
|
|
//
|
|
// File: dfsacl.hxx
|
|
//
|
|
// Contents: Functions to add/remove entries (ACEs) from DS ACL lists
|
|
//
|
|
// Classes: None
|
|
//
|
|
// History: Nov 6, 1998 JHarper created
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _DFS_ACL_
|
|
#define _DFS_ACL_
|
|
|
|
DWORD
|
|
DfsAddMachineAce(
|
|
LDAP *pldap,
|
|
LPWSTR wszDcName,
|
|
LPWSTR wszObjectName,
|
|
LPWSTR wszRootName);
|
|
|
|
DWORD
|
|
DfsRemoveMachineAce(
|
|
LDAP *pldap,
|
|
LPWSTR wszDcName,
|
|
LPWSTR wszObjectName,
|
|
LPWSTR wszRootName);
|
|
|
|
#endif // _DFS_ACL_
|