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.

45 lines
1.1 KiB

  1. //+----------------------------------------------------------------------------
  2. //
  3. // Copyright (C) 1995, Microsoft Corporation
  4. //
  5. // File: dfsmcli.c
  6. //
  7. // Contents: Client side helper functions for Dfs Manager
  8. // Administration RPC interface.
  9. //
  10. // Functions: DfsBindToDfsManager
  11. //
  12. // History: 12-27-95 Milans Created.
  13. //
  14. //-----------------------------------------------------------------------------
  15. #ifndef _DFSM_CLIENT_
  16. #define _DFSM_CLIENT_
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. //+----------------------------------------------------------------------------
  21. //
  22. // Function: DfsBindToDfsManager
  23. //
  24. // Synopsis: Binds to the Dfs Manager's Admin RPC interface.
  25. //
  26. // Arguments: [pwszEntryPath] -- The EntryPath of the volume that needs to
  27. // be administered.
  28. //
  29. // Returns: TRUE if success, FALSE otherwise.
  30. //
  31. //-----------------------------------------------------------------------------
  32. BOOLEAN
  33. DfsBindToDfsManager(
  34. LPCWSTR pwszEntryPath);
  35. #ifdef __cplusplus
  36. }
  37. #endif
  38. #endif // _DFSM_CLIENT_