diff options
author | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-10 08:22:03 +0000 |
---|---|---|
committer | lgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-10 08:22:03 +0000 |
commit | 1bf793701b3af2a002bd5cd11a1cc7c02cdb141d (patch) | |
tree | 2ffbc71b63a2bc8373c9951622a5fa8dc24a2835 /MdePkg/Include/Pi/PiMultiPhase.h | |
parent | 2c6d600e1cf7a20ce92da563acfc7258c3c2bb7b (diff) | |
download | edk2-platforms-1bf793701b3af2a002bd5cd11a1cc7c02cdb141d.tar.xz |
Add comments for enumeration, structure data members those are referred by UefiService, Runtime Service, Dxe Service and Pei Service.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6974 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Include/Pi/PiMultiPhase.h')
-rw-r--r-- | MdePkg/Include/Pi/PiMultiPhase.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/MdePkg/Include/Pi/PiMultiPhase.h b/MdePkg/Include/Pi/PiMultiPhase.h index 4f008ce939..e31d986e96 100644 --- a/MdePkg/Include/Pi/PiMultiPhase.h +++ b/MdePkg/Include/Pi/PiMultiPhase.h @@ -86,8 +86,17 @@ typedef UINT32 EFI_STATUS_CODE_VALUE; /// the structure and is Size bytes long.
///
typedef struct {
+ ///
+ /// The size of the structure. This is specified to enable future expansion.
+ ///
UINT16 HeaderSize;
+ ///
+ /// The size of the data in bytes. This does not include the size of the header structure.
+ ///
UINT16 Size;
+ ///
+ /// The GUID defining the type of the data.
+ ///
EFI_GUID Type;
} EFI_STATUS_CODE_DATA;
|