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

35 lines
978 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_SETUP_MENU_PANEL_H
#define _H2O_SETUP_MENU_PANEL_H
typedef struct _H2O_SETUP_MENU_PANEL H2O_SETUP_MENU_PANEL;
typedef struct _H2O_SETUP_MENU_PANEL_CLASS H2O_SETUP_MENU_PANEL_CLASS;
H2O_SETUP_MENU_PANEL_CLASS *
EFIAPI
GetH2OSetupMenuPanelClass (
VOID
);
struct _H2O_SETUP_MENU_PANEL {
UI_LIST_VIEW Parent;
};
struct _H2O_SETUP_MENU_PANEL_CLASS {
UI_LIST_VIEW_CLASS ParentClass;
};
#endif