49 lines
1.3 KiB
C
49 lines
1.3 KiB
C
/** @file
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2014 - 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_ITEM_H
|
|
#define _H2O_SETUP_PAGE_ITEM_H
|
|
|
|
#include <Protocol/H2OFormBrowser.h>
|
|
typedef struct _H2O_SETUP_PAGE_ITEM H2O_SETUP_PAGE_ITEM;
|
|
typedef struct _H2O_SETUP_PAGE_ITEM_CLASS H2O_SETUP_PAGE_ITEM_CLASS;
|
|
|
|
VOID
|
|
H2OSetupPageItemUpdateVfcfOrder (
|
|
IN UI_CONTROL *Order,
|
|
IN H2O_FORM_BROWSER_S *Statement
|
|
);
|
|
|
|
CHAR16 *
|
|
H2OSetupPageItemGetXmlBuffer (
|
|
IN UINT8 IfrOpcode
|
|
);
|
|
|
|
H2O_SETUP_PAGE_ITEM_CLASS *
|
|
EFIAPI
|
|
GetSetupPageItemClass (
|
|
VOID
|
|
);
|
|
|
|
struct _H2O_SETUP_PAGE_ITEM {
|
|
UI_CONTROL Control;
|
|
H2O_FORM_BROWSER_S *Statement;
|
|
};
|
|
|
|
struct _H2O_SETUP_PAGE_ITEM_CLASS {
|
|
UI_CONTROL_CLASS ParentClass;
|
|
};
|
|
|
|
|
|
#endif
|