Rename Hand.h to Handle.h.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5860 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qwang12 2008-09-09 05:29:23 +00:00
parent 2b1532df6d
commit 130f16022c
3 changed files with 4 additions and 4 deletions

View File

@ -88,7 +88,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
#include "Imem.h" #include "Imem.h"
#include "Image.h" #include "Image.h"
#include "Exec.h" #include "Exec.h"
#include "Hand.h" #include "Handle.h"
// //
// attributes for reserved memory before it is promoted to system memory // attributes for reserved memory before it is promoted to system memory

View File

@ -32,7 +32,7 @@
Library.h Library.h
Imem.h Imem.h
Image.h Image.h
Hand.h Handle.h
Gcd.h Gcd.h
FwVolDriver.h FwVolDriver.h
FwVolBlock.h FwVolBlock.h

View File

@ -86,9 +86,9 @@ typedef struct {
#define PROTOCOL_NOTIFY_SIGNATURE EFI_SIGNATURE_32('p','r','t','n') #define PROTOCOL_NOTIFY_SIGNATURE EFI_SIGNATURE_32('p','r','t','n')
typedef struct { typedef struct {
UINTN Signature; UINTN Signature;
LIST_ENTRY Link; // All notifications for this protocol
PROTOCOL_ENTRY *Protocol; PROTOCOL_ENTRY *Protocol;
EFI_EVENT Event; // Event to notify // LIST_ENTRY Link; // All notifications for this protocol
EFI_EVENT Event; // Event to notify
LIST_ENTRY *Position; // Last position notified LIST_ENTRY *Position; // Last position notified
} PROTOCOL_NOTIFY; } PROTOCOL_NOTIFY;