alder_lake_bios/Insyde/InsydeSetupPkg/Drivers/H2ODisplayEngineLocalMetroDxe/H2OPanels/Include/H2OHelpTextPanel.h

35 lines
968 B
C

/** @file
;******************************************************************************
;* 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 _H2O_HELP_TEXT_PANEL_H
#define _H2O_HELP_TEXT_PANEL_H
typedef struct _H2O_HELP_TEXT_PANEL H2O_HELP_TEXT_PANEL;
typedef struct _H2O_HELP_TEXT_PANEL_CLASS H2O_HELP_TEXT_PANEL_CLASS;
H2O_HELP_TEXT_PANEL_CLASS *
EFIAPI
GetH2OHelpTextPanelClass (
VOID
);
struct _H2O_HELP_TEXT_PANEL {
UI_CONTROL Parent;
};
struct _H2O_HELP_TEXT_PANEL_CLASS {
UI_CONTROL_CLASS ParentClass;
};
#endif