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.

55 lines
1.0 KiB

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. frsrpc.acf
  5. Abstract:
  6. Define the frsrpc interface.
  7. Author:
  8. Billy J. Fuller 20-Mar-1997
  9. Environment
  10. User mode winnt
  11. --*/
  12. [explicit_handle] interface frsrpc {
  13. //
  14. // A NOP function for pinging a server.
  15. //
  16. FrsNOP();
  17. //
  18. // NOT IMPLEMENTED - Enumerate the replica sets
  19. //
  20. FrsEnumerateReplicaPathnames();
  21. //
  22. // NOT IMPLEMENTED - Just a placeholder, it won't really be part of
  23. // the RPC interface but rather a function in the client-side dll.
  24. //
  25. FrsFreeReplicaPathnames();
  26. //
  27. // NOT IMPLEMENTED - Prepare for backup
  28. //
  29. FrsPrepareForBackup();
  30. //
  31. // NOT IMPLEMENTED - backup is complete; reset state
  32. //
  33. FrsBackupComplete();
  34. //
  35. // NOT IMPLEMENTED - Prepare for restore
  36. //
  37. FrsPrepareForRestore();
  38. //
  39. // NOT IMPLEMENTED - restore is complete; reset state
  40. //
  41. FrsRestoreComplete();
  42. }