Last change
on this file since 81913 was 80721, checked in by vboxsync, 5 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
523 bytes
|
Line | |
---|
1 | /** @file
|
---|
2 | Standalone MM.
|
---|
3 |
|
---|
4 | Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
|
---|
5 | Copyright (c) 2016 - 2018, ARM Limited. All rights reserved.<BR>
|
---|
6 |
|
---|
7 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
8 |
|
---|
9 | **/
|
---|
10 |
|
---|
11 | #ifndef _STANDALONE_MM_H_
|
---|
12 | #define _STANDALONE_MM_H_
|
---|
13 |
|
---|
14 | #include <PiMm.h>
|
---|
15 |
|
---|
16 | typedef
|
---|
17 | EFI_STATUS
|
---|
18 | (EFIAPI *MM_IMAGE_ENTRY_POINT) (
|
---|
19 | IN EFI_HANDLE ImageHandle,
|
---|
20 | IN EFI_MM_SYSTEM_TABLE *MmSystemTable
|
---|
21 | );
|
---|
22 |
|
---|
23 | typedef
|
---|
24 | EFI_STATUS
|
---|
25 | (EFIAPI *STANDALONE_MM_FOUNDATION_ENTRY_POINT) (
|
---|
26 | IN VOID *HobStart
|
---|
27 | );
|
---|
28 |
|
---|
29 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.