]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Application/CapsuleApp/AppSupport.c
MdeModulePkg/CapsuleApp: add Internal for function name.
[mirror_edk2.git] / MdeModulePkg / Application / CapsuleApp / AppSupport.c
index 6aea76a7201d8c4e2fadf8b6d6409526c15b6014..a5fd0ca3164909af99464386911d8887e9c6e483 100644 (file)
@@ -74,7 +74,7 @@ GetArg (
 \r
 **/\r
 EFI_STATUS\r
-StrToBuf (\r
+InternalStrToBuf (\r
   OUT UINT8    *Buf,\r
   IN  UINTN    BufferLength,\r
   IN  CHAR16   *Str\r
@@ -135,7 +135,7 @@ StrToBuf (
 \r
 **/\r
 EFI_STATUS\r
-StrToGuid (\r
+InternalStrToGuid (\r
   IN  CHAR16   *Str,\r
   OUT EFI_GUID *Guid\r
   )\r
@@ -185,7 +185,7 @@ StrToGuid (
   //\r
   // Get the following 8 bytes data\r
   //\r
-  StrToBuf (&Guid->Data4[0], 2, Str);\r
+  InternalStrToBuf (&Guid->Data4[0], 2, Str);\r
   //\r
   // Skip 2 byte hex chars\r
   //\r
@@ -196,7 +196,7 @@ StrToGuid (
   } else {\r
     return EFI_UNSUPPORTED;\r
   }\r
-  StrToBuf (&Guid->Data4[2], 6, Str);\r
+  InternalStrToBuf (&Guid->Data4[2], 6, Str);\r
 \r
   return EFI_SUCCESS;\r
 }\r