Last change
on this file was 99404, checked in by vboxsync, 2 years ago |
Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
642 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 |
|
---|
3 | Definitions used internal to the PrmPkg implementation for PRM module image context.
|
---|
4 |
|
---|
5 | Copyright (c) Microsoft Corporation
|
---|
6 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 |
|
---|
8 | **/
|
---|
9 |
|
---|
10 | #ifndef PRM_MODULE_IMAGE_CONTEXT_H_
|
---|
11 | #define PRM_MODULE_IMAGE_CONTEXT_H_
|
---|
12 |
|
---|
13 | #include <IndustryStandard/PeImage.h>
|
---|
14 | #include <Library/PeCoffLib.h>
|
---|
15 |
|
---|
16 | #include <PrmExportDescriptor.h>
|
---|
17 |
|
---|
18 | #pragma pack(push, 1)
|
---|
19 |
|
---|
20 | typedef struct {
|
---|
21 | PE_COFF_LOADER_IMAGE_CONTEXT PeCoffImageContext;
|
---|
22 | EFI_IMAGE_EXPORT_DIRECTORY *ExportDirectory;
|
---|
23 | PRM_MODULE_EXPORT_DESCRIPTOR_STRUCT *ExportDescriptor;
|
---|
24 | } PRM_MODULE_IMAGE_CONTEXT;
|
---|
25 |
|
---|
26 | #pragma pack(pop)
|
---|
27 |
|
---|
28 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.