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
505 B
44 lines
505 B
/*++
|
|
|
|
Module Name:
|
|
|
|
savrstor.h
|
|
|
|
Abstract:
|
|
|
|
Prototypes for routines to save/restore boot options
|
|
defined in savrstor.c
|
|
|
|
Author:
|
|
|
|
Revision History:
|
|
|
|
++*/
|
|
|
|
INTN
|
|
SaveNvr (
|
|
VOID
|
|
);
|
|
|
|
INTN
|
|
SaveAllBootOptions (
|
|
CHAR16* fileName
|
|
);
|
|
|
|
INTN
|
|
SaveBootOption (
|
|
CHAR16* fileName,
|
|
UINT64 bootEntryNumber
|
|
);
|
|
|
|
BOOLEAN
|
|
RestoreFileExists(
|
|
CHAR16* fileName
|
|
);
|
|
|
|
INTN
|
|
RestoreNvr (
|
|
CHAR16* fileName
|
|
);
|
|
|
|
|