diff options
Diffstat (limited to 'ShellPkg/Application/ShellCTestApp/ShellCTestApp.c')
-rw-r--r-- | ShellPkg/Application/ShellCTestApp/ShellCTestApp.c | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/ShellPkg/Application/ShellCTestApp/ShellCTestApp.c b/ShellPkg/Application/ShellCTestApp/ShellCTestApp.c index 8e771afaeb..44f50790c0 100644 --- a/ShellPkg/Application/ShellCTestApp/ShellCTestApp.c +++ b/ShellPkg/Application/ShellCTestApp/ShellCTestApp.c @@ -17,11 +17,19 @@ #include <Library/UefiLib.h>
#include <Library/DebugLib.h>
-INT32
+INTN
EFIAPI
-main(
- UINTN Argc,
- CHAR16 **Argv
- ){
- Print(L"Test Complete\r\n");
+ShellAppMain (
+ IN INTN Argc,
+ IN CHAR16 **Argv
+ )
+{
+ INTN Index;
+
+ Print(L"ShellCTestApp.c:ShellAppMain called with %d parameters\n", Argc);
+ for (Index = 0; Index < Argc; Index++) {
+ Print(L"Argv[%d]: %s\n", Index, Argv[Index]);
+ }
+
+ return 0;
}
\ No newline at end of file |