37 lines
956 B
C
37 lines
956 B
C
/** @file
|
|
Header file for Exit Menu relative function
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2012, Insyde Software Corp. All Rights Reserved.
|
|
;*
|
|
;* You may not reproduce, distribute, publish, display, perform, modify, adapt,
|
|
;* transmit, broadcast, present, recite, release, license or otherwise exploit
|
|
;* any part of this publication in any form, by any means, without the prior
|
|
;* written permission of Insyde Software Corporation.
|
|
;*
|
|
;******************************************************************************
|
|
*/
|
|
|
|
#ifndef _EXIT_FUNC_H_
|
|
#define _EXIT_FUNC_H_
|
|
|
|
#include "SetupUtilityLibCommon.h"
|
|
#include <Library/PrintLib.h>
|
|
|
|
EFI_STATUS
|
|
LoadCustomOption (
|
|
IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This
|
|
);
|
|
|
|
EFI_STATUS
|
|
SaveCustomOption (
|
|
IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This
|
|
);
|
|
|
|
EFI_STATUS
|
|
DiscardChange (
|
|
IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This
|
|
);
|
|
|
|
#endif
|