summaryrefslogtreecommitdiffstats
path: root/ShellPkg/Library/UefiShellDriver1CommandsLib
diff options
context:
space:
mode:
authorjcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524>2011-09-09 16:57:26 +0000
committerjcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524>2011-09-09 16:57:26 +0000
commit6a5aa4d6dc8240128ebc667919cc8f5d68541f45 (patch)
tree939cdcafc7a5ccaa5971aaad3bdce5c817b9f1f6 /ShellPkg/Library/UefiShellDriver1CommandsLib
parentff7666c51118f98f0c8412c45abe9ed9695cd1aa (diff)
downloadedk2-6a5aa4d6dc8240128ebc667919cc8f5d68541f45.tar.gz
edk2-6a5aa4d6dc8240128ebc667919cc8f5d68541f45.tar.bz2
edk2-6a5aa4d6dc8240128ebc667919cc8f5d68541f45.zip
ShellPkg: Add 3 missing function declaration comments and change a function static variable to a file global variable.
Submitted-by: jcarsey Reviewed-by: geekboy15a Reviewed-by: ydong10 git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12317 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ShellPkg/Library/UefiShellDriver1CommandsLib')
-rw-r--r--ShellPkg/Library/UefiShellDriver1CommandsLib/DrvCfg.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/ShellPkg/Library/UefiShellDriver1CommandsLib/DrvCfg.c b/ShellPkg/Library/UefiShellDriver1CommandsLib/DrvCfg.c
index 1b6b189f25..a2b520e1d1 100644
--- a/ShellPkg/Library/UefiShellDriver1CommandsLib/DrvCfg.c
+++ b/ShellPkg/Library/UefiShellDriver1CommandsLib/DrvCfg.c
@@ -457,6 +457,16 @@ ConfigFromFile(
return (SHELL_SUCCESS);
}
+/**
+ Present a requested action to the user.
+
+ @param[in] DriverImageHandle The handle for the driver to configure.
+ @param[in] ControllerHandle The handle of the device being managed by the Driver specified.
+ @param[in] ChildHandle The handle of a child device of the specified device.
+ @param[in] ActionRequired The required HII action.
+
+ @retval SHELL_INVALID_PARAMETER A parameter has a invalid value.
+**/
EFI_STATUS
EFIAPI
ShellCmdDriverConfigurationProcessActionRequired (
@@ -510,6 +520,22 @@ ShellCmdDriverConfigurationProcessActionRequired (
return EFI_SUCCESS;
}
+/**
+ Do the configuration in an environment without HII.
+
+ @param[in] Language The language code.
+ @param[in] ForceDefaults TRUE to force defaults, FALSE otherwise.
+ @param[in] DefaultType If ForceDefaults is TRUE, specifies the default type.
+ @param[in] AllChildren TRUE to configure all children, FALSE otherwise.
+ @param[in] ValidateOptions TRUE to validate existing options, FALSE otherwise.
+ @param[in] SetOptions TRUE to set options, FALSE otherwise.
+ @param[in] DriverImageHandle The handle for the driver to configure.
+ @param[in] DeviceHandle The handle of the device being managed by the Driver specified.
+ @param[in] ChildHandle The handle of a child device of the specified device.
+
+ @retval SHELL_NOT_FOUND A specified handle could not be found.
+ @retval SHELL_INVALID_PARAMETER A parameter has a invalid value.
+**/
SHELL_STATUS
EFIAPI
PreHiiDrvCfg (