From 94224e8706d6bf0354d8fc2bf710f7d3a995b3ec Mon Sep 17 00:00:00 2001 From: Joursoir Date: Thu, 2 Dec 2021 20:27:53 +0300 Subject: link all components together in the main file --- Include/Library/UfmCommandLib.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Include/Library/UfmCommandLib.h (limited to 'Include/Library/UfmCommandLib.h') 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_ */ -- cgit v1.2.3-18-g5258