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.

59 lines
818 B

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. dssetp.ch
  5. Abstract:
  6. local funciton prototypes/defines
  7. Author:
  8. Mac McLain (MacM) Feb 10, 1997
  9. Environment:
  10. User Mode
  11. Revision History:
  12. --*/
  13. #ifndef __UPGRADE_H__
  14. #define __UPGRADE_H__
  15. DWORD
  16. DsRolepSaveUpgradeState(
  17. IN LPWSTR AnswerFile
  18. );
  19. DWORD
  20. DsRolepDeleteUpgradeInfo(
  21. VOID
  22. );
  23. DWORD
  24. DsRolepQueryUpgradeInfo(
  25. OUT PBOOLEAN IsUpgrade,
  26. OUT PULONG ServerRole
  27. );
  28. DWORD
  29. DsRolepSetLogonDomain(
  30. IN LPWSTR Domain,
  31. IN BOOLEAN FailureAllowed
  32. );
  33. DWORD
  34. DsRolepGetBuiltinAdminAccountName(
  35. OUT LPWSTR *BuiltinAdmin
  36. );
  37. DWORD
  38. DsRolepSetBuiltinAdminAccountPassword(
  39. IN LPWSTR Password
  40. );
  41. #endif // __UPGRADE_H__