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.

60 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1989-1999 Microsoft Corporation
  3. Module Name:
  4. safeboot.h
  5. Abstract:
  6. This module contains all safe boot code.
  7. Author:
  8. Wesley Witt (wesw) 01/05/1998
  9. Revision History:
  10. --*/
  11. #ifndef _SAFEBOOT_
  12. #define _SAFEBOOT_
  13. #if _MSC_VER > 1000
  14. #pragma once
  15. #endif
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. //
  20. // define the safeboot options
  21. //
  22. #define SAFEBOOT_MINIMAL 1
  23. #define SAFEBOOT_NETWORK 2
  24. #define SAFEBOOT_DSREPAIR 3
  25. #define SAFEBOOT_LOAD_OPTION_W L"SAFEBOOT:"
  26. #define SAFEBOOT_MINIMAL_STR_W L"MINIMAL"
  27. #define SAFEBOOT_NETWORK_STR_W L"NETWORK"
  28. #define SAFEBOOT_DSREPAIR_STR_W L"DSREPAIR"
  29. #define SAFEBOOT_ALTERNATESHELL_STR_W L"(ALTERNATESHELL)"
  30. #define SAFEBOOT_LOAD_OPTION_A "SAFEBOOT:"
  31. #define SAFEBOOT_MINIMAL_STR_A "MINIMAL"
  32. #define SAFEBOOT_NETWORK_STR_A "NETWORK"
  33. #define SAFEBOOT_DSREPAIR_STR_A "DSREPAIR"
  34. #define SAFEBOOT_ALTERNATESHELL_STR_A "(ALTERNATESHELL)"
  35. #define BOOTLOG_STRSIZE 256
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39. #endif // _NTPNPAPI_