mirror of https://github.com/acidanthera/audk.git
ShellPkg: Remove double typedef for same struct
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jaben Carsey <jaben.carsey@intel.com> Reviewed-by: Andrew Fish <afish@apple.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15761 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
477a79e1eb
commit
e7a8edfdf6
|
@ -73,13 +73,13 @@ CHAR16*
|
||||||
);
|
);
|
||||||
|
|
||||||
/// EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL protocol structure.
|
/// EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL protocol structure.
|
||||||
typedef struct _EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL {
|
struct _EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL {
|
||||||
|
|
||||||
CONST CHAR16 *CommandName;
|
CONST CHAR16 *CommandName;
|
||||||
SHELL_COMMAND_HANDLER Handler;
|
SHELL_COMMAND_HANDLER Handler;
|
||||||
SHELL_COMMAND_GETHELP GetHelp;
|
SHELL_COMMAND_GETHELP GetHelp;
|
||||||
|
|
||||||
} EFI_SHELL_DYNAMIC_COMMAND_PROTOCOL;
|
};
|
||||||
|
|
||||||
extern EFI_GUID gEfiShellDynamicCommandProtocolGuid;
|
extern EFI_GUID gEfiShellDynamicCommandProtocolGuid;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue