aboutsummaryrefslogtreecommitdiffstats
path: root/Include/Library/UfmCommandLib.h
diff options
context:
space:
mode:
Diffstat (limited to 'Include/Library/UfmCommandLib.h')
-rw-r--r--Include/Library/UfmCommandLib.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/Include/Library/UfmCommandLib.h b/Include/Library/UfmCommandLib.h
new file mode 100644
index 0000000..cbbfe56
--- /dev/null
+++ b/Include/Library/UfmCommandLib.h
@@ -0,0 +1,21 @@
+#ifndef UFM_COMMAND_LIB_H_
+#define UFM_COMMAND_LIB_H_
+
+/**
+ UEFI File Manager.
+
+ @param[in] ImageHandle Handle to the Image (NULL if internal).
+ @param[in] SystemTable Pointer to the System Table (NULL if internal).
+
+ @retval SHELL_INVALID_PARAMETER The command line invocation could not be parsed.
+ @retval SHELL_NOT_FOUND The command failed.
+ @retval SHELL_SUCCESS The command was successful.
+**/
+SHELL_STATUS
+EFIAPI
+ShellCommandRunUFM(
+ IN EFI_HANDLE ImageHandle,
+ IN EFI_SYSTEM_TABLE *SystemTable
+);
+
+#endif /* UFM_COMMAND_LIB_H_ */