mirror of https://github.com/acidanthera/audk.git
20 lines
467 B
C
20 lines
467 B
C
|
/** @file
|
||
|
Universal Payload general definitions.
|
||
|
|
||
|
Copyright (c) 2023, Intel Corporation. All rights reserved.<BR>
|
||
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
|
||
|
**/
|
||
|
|
||
|
#ifndef UNIVERSAL_PAYLOAD_BASE_H_
|
||
|
#define UNIVERSAL_PAYLOAD_BASE_H_
|
||
|
|
||
|
extern GUID gUniversalPayloadBaseGuid;
|
||
|
|
||
|
typedef struct {
|
||
|
UNIVERSAL_PAYLOAD_GENERIC_HEADER Header;
|
||
|
EFI_PHYSICAL_ADDRESS Entry;
|
||
|
} UNIVERSAL_PAYLOAD_BASE;
|
||
|
|
||
|
#endif // UNIVERSAL_PAYLOAD_BASE_H_
|