Removed extra typedefs on structures to fix error generated by gcc.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4939 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jljusten
2008-03-20 21:17:47 +00:00
parent a2446f2e1b
commit 5d46191d8f
35 changed files with 78 additions and 86 deletions

View File

@ -36,8 +36,6 @@ Abstract:
//
// Forward reference for pure ANSI compatability
//
EFI_FORWARD_DECLARATION (EFI_FORM_CALLBACK_PROTOCOL);
typedef struct _EFI_FORM_CALLBACK_PROTOCOL EFI_FORM_CALLBACK_PROTOCOL;
#define RESET_REQUIRED 1 // Flags setting to signify that the callback operation resulted in an eventual
@ -109,11 +107,11 @@ EFI_STATUS
OUT EFI_HII_CALLBACK_PACKET **Packet
);
typedef struct _EFI_FORM_CALLBACK_PROTOCOL {
struct _EFI_FORM_CALLBACK_PROTOCOL {
EFI_NV_READ NvRead;
EFI_NV_WRITE NvWrite;
EFI_FORM_CALLBACK Callback;
} EFI_FORM_CALLBACK_PROTOCOL;
};
extern EFI_GUID gEfiFormCallbackProtocolGuid;