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:
@ -36,8 +36,6 @@ Abstract:
|
||||
//
|
||||
// Forward reference for pure ANSI compatability
|
||||
//
|
||||
EFI_FORWARD_DECLARATION (EFI_FORM_BROWSER_PROTOCOL);
|
||||
|
||||
typedef struct _EFI_FORM_BROWSER_PROTOCOL EFI_FORM_BROWSER_PROTOCOL;
|
||||
|
||||
typedef struct {
|
||||
@ -87,10 +85,10 @@ EFI_STATUS
|
||||
...
|
||||
);
|
||||
|
||||
typedef struct _EFI_FORM_BROWSER_PROTOCOL {
|
||||
struct _EFI_FORM_BROWSER_PROTOCOL {
|
||||
EFI_SEND_FORM SendForm;
|
||||
EFI_CREATE_POP_UP CreatePopUp;
|
||||
} EFI_FORM_BROWSER_PROTOCOL;
|
||||
};
|
||||
|
||||
extern EFI_GUID gEfiFormBrowserProtocolGuid;
|
||||
|
||||
|
Reference in New Issue
Block a user