X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=ShellPkg%2FInclude%2FProtocol%2FEfiShellParameters.h;fp=ShellPkg%2FInclude%2FProtocol%2FEfiShellParameters.h;h=7082d421bed36bef7519687244362e0e262efa59;hp=32d8379d3b50b4bbd68348ac227231348452f5f5;hb=a405b86d274d32b92f69842bfb9a1ab143128f57;hpb=52fb4d3d133883c6e0e8b8ee8a7af590a920f5eb diff --git a/ShellPkg/Include/Protocol/EfiShellParameters.h b/ShellPkg/Include/Protocol/EfiShellParameters.h index 32d8379d3b..7082d421be 100644 --- a/ShellPkg/Include/Protocol/EfiShellParameters.h +++ b/ShellPkg/Include/Protocol/EfiShellParameters.h @@ -12,6 +12,8 @@ **/ +#include + #ifndef __EFI_SHELL_PARAMETERS_PROTOCOL__ #define __EFI_SHELL_PARAMETERS_PROTOCOL__ @@ -36,21 +38,21 @@ typedef struct _EFI_SHELL_PARAMETERS_PROTOCOL { /// /// The file handle for the standard input for this executable. This may be different - /// from the ConInHandle in the EFI_SYSTEM_TABLE. + /// from the ConInHandle in EFI_SYSTEM_TABLE. /// - EFI_FILE_HANDLE StdIn; + SHELL_FILE_HANDLE StdIn; /// /// The file handle for the standard output for this executable. This may be different - /// from the ConOutHandle in the EFI_SYSTEM_TABLE. + /// from the ConOutHandle in EFI_SYSTEM_TABLE. /// - EFI_FILE_HANDLE StdOut; + SHELL_FILE_HANDLE StdOut; /// /// The file handle for the standard error output for this executable. This may be - /// different from the StdErrHandle in the EFI_SYSTEM_TABLE. + /// different from the StdErrHandle in EFI_SYSTEM_TABLE. /// - EFI_FILE_HANDLE StdErr; + SHELL_FILE_HANDLE StdErr; } EFI_SHELL_PARAMETERS_PROTOCOL; extern EFI_GUID gEfiShellParametersProtocolGuid;