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.

35 lines
1.1 KiB

  1. #ifndef _NTSETUP_H_
  2. #define _NTSETUP_H_
  3. //////////////////////////////////////////////////////////////////////////////
  4. //
  5. // Copyright (c) Microsoft Corporation. All rights reserved.
  6. //
  7. // Module: ntsetup.h
  8. //
  9. // Author: Dan Elliott
  10. //
  11. // Abstract:
  12. // Header file for internal-use declarations used by NT Setup
  13. //
  14. // Environment:
  15. // Whistler
  16. //
  17. // Revision History:
  18. // 000818 dane Created and added REGSTR_VALUE_OOEMOOBEINPROGRESS.
  19. //
  20. //////////////////////////////////////////////////////////////////////////////
  21. // This value is set in the HKLM\System\Setup key to dword:1 by SysPrep
  22. // utilities to indicate that OOBE will be run on first boot. If
  23. // services.exe finds this value set to 1, it runs PnP, signals OOBE that PnP
  24. // is complete, then waits for a signal from OOBE before starting other
  25. // services.
  26. //
  27. #define REGSTR_VALUE_OOBEINPROGRESS TEXT("OobeInProgress")
  28. #define REGSTR_VALUE_OEMOOBEINPROGRESS L"OemOobeInProgress"
  29. #endif // _NTSETUP_H_
  30. //
  31. ///// End of file: ntsetup.h ////////////////////////////////////////////////