Source code of Windows XP (NT5)
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

  1. //+----------------------------------------------------------------------------
  2. //
  3. // Copyright (C) 1998, Microsoft Corporation
  4. //
  5. // File: dfsacl.hxx
  6. //
  7. // Contents: Functions to add/remove entries (ACEs) from DS ACL lists
  8. //
  9. // Classes: None
  10. //
  11. // History: Nov 6, 1998 JHarper created
  12. //
  13. //-----------------------------------------------------------------------------
  14. #ifndef _DFS_ACL_
  15. #define _DFS_ACL_
  16. DWORD
  17. DfsAddMachineAce(
  18. LDAP *pldap,
  19. LPWSTR wszDcName,
  20. LPWSTR wszObjectName,
  21. LPWSTR wszRootName);
  22. DWORD
  23. DfsRemoveMachineAce(
  24. LDAP *pldap,
  25. LPWSTR wszDcName,
  26. LPWSTR wszObjectName,
  27. LPWSTR wszRootName);
  28. #endif // _DFS_ACL_