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
This commit is contained in:
qhuang8 2009-12-11 01:08:51 +00:00
parent 601afc0356
commit 8546d5a694

View File

@ -129,6 +129,21 @@ struct _EFI_PEI_NOTIFY_DESCRIPTOR {
EFI_PEIM_NOTIFY_ENTRY_POINT Notify; 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 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 installs an interface in the PEI PPI database by GUID. The purpose of the