diff options
author | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-03-20 16:37:48 +0000 |
---|---|---|
committer | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-03-20 16:37:48 +0000 |
commit | e5bce2758f79f8b1d5a5466d48ff482b1b06670e (patch) | |
tree | 80ffd4456ce36a58150f04cf14088db9960fc0c3 /EdkCompatibilityPkg/Foundation/Efi/Protocol/PxeBaseCode | |
parent | 91aac0e4668b80f99d4d8f1f92225a3745d83dbd (diff) | |
download | edk2-platforms-e5bce2758f79f8b1d5a5466d48ff482b1b06670e.tar.xz |
Removed extra typedefs on structures to remove error with gcc compiler.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4928 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkCompatibilityPkg/Foundation/Efi/Protocol/PxeBaseCode')
-rw-r--r-- | EdkCompatibilityPkg/Foundation/Efi/Protocol/PxeBaseCode/PxeBaseCode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/EdkCompatibilityPkg/Foundation/Efi/Protocol/PxeBaseCode/PxeBaseCode.h b/EdkCompatibilityPkg/Foundation/Efi/Protocol/PxeBaseCode/PxeBaseCode.h index 7fc959db34..d3e443ee32 100644 --- a/EdkCompatibilityPkg/Foundation/Efi/Protocol/PxeBaseCode/PxeBaseCode.h +++ b/EdkCompatibilityPkg/Foundation/Efi/Protocol/PxeBaseCode/PxeBaseCode.h @@ -362,7 +362,7 @@ EFI_STATUS //
#define EFI_PXE_BASE_CODE_INTERFACE_REVISION 0x00010000
-typedef struct _EFI_PXE_BASE_CODE_PROTOCOL {
+struct _EFI_PXE_BASE_CODE_PROTOCOL {
UINT64 Revision;
EFI_PXE_BASE_CODE_START Start;
EFI_PXE_BASE_CODE_STOP Stop;
@@ -377,7 +377,7 @@ typedef struct _EFI_PXE_BASE_CODE_PROTOCOL { EFI_PXE_BASE_CODE_SET_STATION_IP SetStationIp;
EFI_PXE_BASE_CODE_SET_PACKETS SetPackets;
EFI_PXE_BASE_CODE_MODE *Mode;
-} EFI_PXE_BASE_CODE_PROTOCOL;
+};
extern EFI_GUID gEfiPxeBaseCodeProtocolGuid;
|