https://git.reactos.org/?p=reactos.git;a=commitdiff;h=fbbc3efd60bdf5986a6c7f...
commit fbbc3efd60bdf5986a6c7ff5a7cee4c3a51689e5 Author: He Yang 1160386205@qq.com AuthorDate: Sat Sep 19 20:20:14 2020 +0800 Commit: GitHub noreply@github.com CommitDate: Sat Sep 19 15:20:14 2020 +0300
[RAPPS] Update help command (#3209)
Add missing FIND and INFO commands to the usage help string. --- base/applications/rapps/include/unattended.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/base/applications/rapps/include/unattended.h b/base/applications/rapps/include/unattended.h index c5bc8797b01..301f54ab9e7 100644 --- a/base/applications/rapps/include/unattended.h +++ b/base/applications/rapps/include/unattended.h @@ -6,6 +6,11 @@ #define CMD_KEY_INFO L"INFO" #define CMD_KEY_HELP L"?"
-const WCHAR UsageString[] = L"RAPPS [/" CMD_KEY_HELP "] [/" CMD_KEY_INSTALL " packagename] [/" CMD_KEY_SETUP " filename]"; +const WCHAR UsageString[] = L"RAPPS \ +[/" CMD_KEY_HELP L"] \ +[/" CMD_KEY_INSTALL L" packagename] \ +[/" CMD_KEY_SETUP L" filename] \ +[/" CMD_KEY_FIND L" string] \ +[/" CMD_KEY_INFO L" packagename]";
BOOL ParseCmdAndExecute(LPWSTR lpCmdLine, BOOL bIsFirstLaunch, int nCmdShow);