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.

68 lines
1.0 KiB

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. brmain.h
  5. Abstract:
  6. Private header file which defines the global data which is used for
  7. communication between the service control handler and the
  8. rest of the NT Workstation service.
  9. Author:
  10. Rita Wong (ritaw) 06-May-1991
  11. Revision History:
  12. --*/
  13. #ifndef _BRBACKUP_INCLUDED_
  14. #define _BRBACKUP_INCLUDED_
  15. NET_API_STATUS
  16. BecomeBackup(
  17. IN PNETWORK Network,
  18. IN PVOID Context
  19. );
  20. NET_API_STATUS
  21. BrBecomeBackup(
  22. IN PNETWORK Network
  23. );
  24. NET_API_STATUS
  25. PostBecomeBackup(
  26. PNETWORK Network
  27. );
  28. NET_API_STATUS
  29. BrStopBackup (
  30. IN PNETWORK Network
  31. );
  32. NET_API_STATUS
  33. PostWaitForRoleChange (
  34. PNETWORK Network
  35. );
  36. NET_API_STATUS
  37. BrStopMaster(
  38. IN PNETWORK Network
  39. );
  40. NET_API_STATUS
  41. StartBackupBrowserTimer(
  42. IN PNETWORK Network
  43. );
  44. NET_API_STATUS
  45. BackupBrowserTimerRoutine (
  46. IN PVOID TimerContext
  47. );
  48. #endif // ifndef _BRBACKUP_INCLUDED_