58 lines
2.0 KiB
C
58 lines
2.0 KiB
C
/**@file
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2014 - 2015, 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.
|
|
;*
|
|
;******************************************************************************
|
|
@copyright
|
|
Copyright (c) 2009 - 2014 Intel Corporation. All rights reserved
|
|
This software and associated documentation (if any) is furnished
|
|
under a license and may only be used or copied in accordance
|
|
with the terms of the license. Except as permitted by the
|
|
license, no part of this software or documentation may be
|
|
reproduced, stored in a retrieval system, or transmitted in any
|
|
form or by any means without the express written consent of
|
|
Intel Corporation.
|
|
This file contains a 'Sample Driver' and is licensed as such
|
|
under the terms of your license agreement with Intel or your
|
|
vendor. This file may be modified by the user, subject to
|
|
the additional terms of the license agreement.
|
|
|
|
@par Specification Reference:
|
|
**/
|
|
|
|
#ifndef __ACPI_SETUP_H__
|
|
#define __ACPI_SETUP_H__
|
|
#include <SetupUtility.h>
|
|
|
|
/**
|
|
This function initializes the Acpi related setup option values
|
|
|
|
@param[in] HiiHandle HiiHandle Handle to HII database
|
|
@param[in] Class Indicates the setup class
|
|
|
|
**/
|
|
VOID
|
|
InitAcpiStrings (
|
|
IN EFI_HII_HANDLE HiiHandle,
|
|
IN UINT16 Class
|
|
);
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
LowPowerS0IdleEnableCallback (
|
|
IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,
|
|
IN EFI_BROWSER_ACTION Action,
|
|
IN EFI_QUESTION_ID KeyValue,
|
|
IN UINT8 Type,
|
|
IN EFI_IFR_TYPE_VALUE *Value,
|
|
OUT EFI_BROWSER_ACTION_REQUEST *ActionRequest
|
|
);
|
|
#endif
|