46 lines
1.4 KiB
C
46 lines
1.4 KiB
C
/** @file
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2012 - 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 _H2O_SETUP_PAGE_PANEL_H
|
|
#define _H2O_SETUP_PAGE_PANEL_H
|
|
|
|
typedef struct _H2O_SETUP_PAGE_PANEL H2O_SETUP_PAGE_PANEL;
|
|
typedef struct _H2O_SETUP_PAGE_PANEL_CLASS H2O_SETUP_PAGE_PANEL_CLASS;
|
|
|
|
H2O_SETUP_PAGE_PANEL_CLASS *
|
|
EFIAPI
|
|
GetH2OSetupPagePanelClass (
|
|
VOID
|
|
);
|
|
|
|
typedef struct _H2O_SETUP_PAGE_PANEL_IFR_OPCODE_INFO {
|
|
UINT8 IfrOpcode;
|
|
H2O_PROPERTY_INFO **PropertyList;
|
|
UINTN PropertyCount;
|
|
} H2O_SETUP_PAGE_PANEL_IFR_OPCODE_INFO;
|
|
|
|
struct _H2O_SETUP_PAGE_PANEL {
|
|
UI_LIST_VIEW Parent;
|
|
UINT32 StatementCount;
|
|
H2O_FORM_BROWSER_S **Statement;
|
|
|
|
H2O_SETUP_PAGE_PANEL_IFR_OPCODE_INFO *IfrOpcodeInfoList;
|
|
UINTN IfrOpcodeInfoCount;
|
|
};
|
|
|
|
struct _H2O_SETUP_PAGE_PANEL_CLASS {
|
|
UI_LIST_VIEW_CLASS ParentClass;
|
|
};
|
|
|
|
#endif
|