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.

44 lines
461 B

  1. /*++
  2. Module Name:
  3. savrstor.h
  4. Abstract:
  5. Prototypes for routines to save/restore boot options
  6. defined in savrstor.c
  7. Author:
  8. Revision History:
  9. ++*/
  10. INTN
  11. SaveNvr (
  12. VOID
  13. );
  14. INTN
  15. SaveAllBootOptions (
  16. CHAR16* fileName
  17. );
  18. INTN
  19. SaveBootOption (
  20. CHAR16* fileName,
  21. UINT64 bootEntryNumber
  22. );
  23. BOOLEAN
  24. RestoreFileExists(
  25. CHAR16* fileName
  26. );
  27. INTN
  28. RestoreNvr (
  29. CHAR16* fileName
  30. );