diff options
author | Joursoir <chat@joursoir.net> | 2021-12-02 20:27:53 +0300 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2021-12-02 20:27:53 +0300 |
commit | 94224e8706d6bf0354d8fc2bf710f7d3a995b3ec (patch) | |
tree | feea3101eb8c6f7d50c0c575f560c57f5ad6d4fc /Include/Library | |
parent | a3fb7dc6de738d76829ec0179f2a1d6b5d2c44be (diff) | |
download | ufm-94224e8706d6bf0354d8fc2bf710f7d3a995b3ec.tar.gz ufm-94224e8706d6bf0354d8fc2bf710f7d3a995b3ec.tar.bz2 ufm-94224e8706d6bf0354d8fc2bf710f7d3a995b3ec.zip |
link all components together in the main file
Diffstat (limited to 'Include/Library')
-rw-r--r-- | Include/Library/UfmCommandLib.h | 21 |
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_ */ |