diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-04-21 06:45:44 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-04-21 06:45:44 +0000 |
commit | ec0ccddace88f8918d636366d5e5f971ba18a1a8 (patch) | |
tree | a6bf9fef68514643ea4de0180b29d77f1daec2f2 /MdePkg/Include/Protocol/StatusCode.h | |
parent | 4bd94693b3d5a671765740ead5600f1b9de78489 (diff) | |
download | edk2-platforms-ec0ccddace88f8918d636366d5e5f971ba18a1a8.tar.xz |
Fix missing include file which break doxygen parsing.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5102 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Protocol/StatusCode.h')
-rw-r--r-- | MdePkg/Include/Protocol/StatusCode.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/MdePkg/Include/Protocol/StatusCode.h b/MdePkg/Include/Protocol/StatusCode.h index 06c4255587..2a2411ccf7 100644 --- a/MdePkg/Include/Protocol/StatusCode.h +++ b/MdePkg/Include/Protocol/StatusCode.h @@ -26,6 +26,9 @@ #ifndef __STATUS_CODE_RUNTIME_PROTOCOL_H__
#define __STATUS_CODE_RUNTIME_PROTOCOL_H__
+#include <Pi/PiMultiPhase.h>
+#include <Uefi/UefiBaseType.h>
+
#define EFI_STATUS_CODE_RUNTIME_PROTOCOL_GUID \
{ 0xd2b2b828, 0x826, 0x48a7, { 0xb3, 0xdf, 0x98, 0x3c, 0x0, 0x60, 0x24, 0xf0 } }
@@ -48,7 +51,7 @@ **/
typedef
-EFI_STATUS
+EFI_STATUS
(EFIAPI *EFI_REPORT_STATUS_CODE) (
IN EFI_STATUS_CODE_TYPE Type,
IN EFI_STATUS_CODE_VALUE Value,
@@ -58,7 +61,6 @@ EFI_STATUS );
/**
- @par Protocol Description:
Provides the service required to report a status code to the platform firmware.
This protocol must be produced by a runtime DXE driver and may be consumed
only by the DXE Foundation.
|