40 lines
981 B
C
40 lines
981 B
C
/** @file
|
|
One Key Battery UI function.
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2020, 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 _ONE_KEY_BATTERY_UI_H_
|
|
#define _ONE_KEY_BATTERY_UI_H_
|
|
|
|
EFI_STATUS
|
|
InitializeGUI (
|
|
VOID
|
|
);
|
|
|
|
EFI_STATUS
|
|
DrawBattery (
|
|
IN UINTN Percent,
|
|
IN BOOLEAN AcStatus
|
|
);
|
|
|
|
EFI_STATUS
|
|
DrawCharger (
|
|
IN BOOLEAN DynamicPicture
|
|
);
|
|
|
|
EFI_STATUS
|
|
DrawAOUDevice (
|
|
IN BOOLEAN DynamicPicture
|
|
);
|
|
|
|
#endif
|