VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/Firmware/PrmPkg/Library/DxePrmModuleDiscoveryLib/PrmModuleDiscovery.h@ 105681

Last change on this file since 105681 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: 943 bytes
Line 
1/** @file
2
3 Definitions internally used for Platform Runtime Mechanism (PRM) module discovery.
4
5 Copyright (c) Microsoft Corporation
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8**/
9
10#ifndef PRM_MODULE_DISCOVERY_H_
11#define PRM_MODULE_DISCOVERY_H_
12
13#include <PrmModuleImageContext.h>
14
15#define PRM_MODULE_IMAGE_CONTEXT_LIST_ENTRY_SIGNATURE SIGNATURE_32('P','R','M','E')
16
17#pragma pack(push, 1)
18
19typedef struct {
20 UINTN Signature;
21 LIST_ENTRY Link;
22 PRM_MODULE_IMAGE_CONTEXT Context;
23} PRM_MODULE_IMAGE_CONTEXT_LIST_ENTRY;
24
25#pragma pack(pop)
26
27/**
28 Creates a new PRM Module Image Context linked list entry.
29
30 @retval PrmModuleImageContextListEntry If successful, a pointer a PRM Module Image Context linked list entry
31 otherwise, NULL is returned.
32
33**/
34PRM_MODULE_IMAGE_CONTEXT_LIST_ENTRY *
35CreateNewPrmModuleImageContextListEntry (
36 VOID
37 );
38
39#endif
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette