]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EmbeddedPkg/EblExternCmd/Main.c
MdeModulePkg Variable: Update GetNextVariableName to follow UEFI 2.7
[mirror_edk2.git] / EmbeddedPkg / EblExternCmd / Main.c
index 9f38c5de58bfb85ee0870a0540724ecc51c510ff..dbfe336899c77e55cf625719a54514064ddf3e51 100644 (file)
@@ -1,10 +1,10 @@
 /** @file\r
-  Example of an external EBL command. It's loaded via EBL start command. \r
+  Example of an external EBL command. It's loaded via EBL start command.\r
   Argc and Argv are passed in via "" of the EBL command line.\r
 \r
   Start fs0:\EdkExternCmd.efi "Argv[0] Argv[1] 2"\r
 \r
-  will launch this command with \r
+  will launch this command with\r
     Argv[0] = "Argv[0]"\r
     Argv[1] = "Argv[2]"\r
     Argv[2] = "3"\r
 \r
 **/\r
 \r
+#include "Ebl.h"\r
 \r
 /**\r
   Entry point with Argc, Argv. Put your code here.\r
 \r
   @param  Argc   Number of command arguments in Argv\r
-  @param  Argv   Array of strings that represent the parsed command line. \r
+  @param  Argv   Array of strings that represent the parsed command line.\r
                  Argv[0] is the command name\r
 \r
   @return EFI_SUCCESS\r
@@ -46,7 +47,7 @@ EblMain (
   for (Index = 0; Index < Argc; Index++) {\r
     AsciiPrint ("Argv[%d] = %a\n", Index, Argv[Index]);\r
   }\r
-  \r
+\r
   return EFI_SUCCESS;\r
 }\r
 \r