/** @file
Define the structure for the Payload command line Hob.
Copyright (c) 2022, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#ifndef PAYLOAD_COMMAND_LINE_H_
#define PAYLOAD_COMMAND_LINE_H_
#include
#include
#pragma pack (1)
typedef struct {
UNIVERSAL_PAYLOAD_GENERIC_HEADER Header;
UINT32 Count;
CHAR8 CommandLine[0];
} UNIVERSAL_PAYLOAD_COMMAND_LINE;
#pragma pack()
#define UNIVERSAL_PAYLOAD_COMMAND_LINE_REVISION 1
extern GUID gEdkiiPayloadCommandLineGuid;
#endif