alder_lake_bios/Insyde/InsydeSetupPkg/Drivers/H2ODisplayEngineLocalMetroDxe/StatementControls/Include/H2OStringInput.h

35 lines
967 B
C

/** @file
;******************************************************************************
;* Copyright (c) 2019, 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_STRING_INPUT_H
#define _H2O_STRING_INPUT_H
typedef struct _H2O_STRING_INPUT H2O_STRING_INPUT;
typedef struct _H2O_STRING_INPUT_CLASS H2O_STRING_INPUT_CLASS;
H2O_STRING_INPUT_CLASS *
EFIAPI
GetH2OStringInputClass (
VOID
);
struct _H2O_STRING_INPUT {
H2O_STATEMENT_CONTROL StatementControl;
};
struct _H2O_STRING_INPUT_CLASS {
H2O_STATEMENT_CONTROL_CLASS ParentClass;
};
#endif