diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-12-11 01:08:51 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-12-11 01:08:51 +0000 |
commit | 8546d5a694a7d3cf56ac17d0441fc45032cc58a4 (patch) | |
tree | 11c7c27a99bbe09aad0318acda1392b19c40a887 /MdePkg | |
parent | 601afc03569bd62795dcb4736521862494300e8c (diff) | |
download | edk2-8546d5a694a7d3cf56ac17d0441fc45032cc58a4.tar.gz edk2-8546d5a694a7d3cf56ac17d0441fc45032cc58a4.tar.bz2 edk2-8546d5a694a7d3cf56ac17d0441fc45032cc58a4.zip |
Add missing definition of "EFI_PEI_DESCRIPTOR" in PI spec.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9550 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg')
-rw-r--r-- | MdePkg/Include/Pi/PiPeiCis.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/MdePkg/Include/Pi/PiPeiCis.h b/MdePkg/Include/Pi/PiPeiCis.h index 6fba4f747f..35a54e72d4 100644 --- a/MdePkg/Include/Pi/PiPeiCis.h +++ b/MdePkg/Include/Pi/PiPeiCis.h @@ -129,6 +129,21 @@ struct _EFI_PEI_NOTIFY_DESCRIPTOR { EFI_PEIM_NOTIFY_ENTRY_POINT Notify;
};
+///
+/// This data structure is the means by which callable services are installed and
+/// notifications are registered in the PEI phase.
+///
+typedef union {
+ ///
+ /// The typedef structure of the notification descriptor.
+ ///
+ EFI_PEI_NOTIFY_DESCRIPTOR Notify;
+ ///
+ /// The typedef structure of the PPI descriptor.
+ ///
+ EFI_PEI_PPI_DESCRIPTOR Ppi;
+} EFI_PEI_DESCRIPTOR;
+
/**
This service is the first one provided by the PEI Foundation. This function
installs an interface in the PEI PPI database by GUID. The purpose of the
|