summaryrefslogtreecommitdiffstats
path: root/ShellPkg/Include
diff options
context:
space:
mode:
authorJaben Carsey <jaben.carsey@intel.com>2014-08-04 20:28:55 +0000
committerjcarsey <jcarsey@6f19259b-4bc3-4df7-8a09-765794883524>2014-08-04 20:28:55 +0000
commit9a6ac65dddb2d4cb4fa0abc130de63ee8073dc42 (patch)
tree917c6bd1de0a2e0ec32ebce3a946037903c440e5 /ShellPkg/Include
parentb4e53e389d2a04678fb28bc445cd5b554bb175e0 (diff)
downloadedk2-9a6ac65dddb2d4cb4fa0abc130de63ee8073dc42.tar.gz
edk2-9a6ac65dddb2d4cb4fa0abc130de63ee8073dc42.tar.bz2
edk2-9a6ac65dddb2d4cb4fa0abc130de63ee8073dc42.zip
ShellPkg: Fix comments
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jaben Carsey <jaben.carsey@intel.com> Reviewed-by: Erik Bjorge <erik.c.bjorge@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15749 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ShellPkg/Include')
-rw-r--r--ShellPkg/Include/Library/HandleParsingLib.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/ShellPkg/Include/Library/HandleParsingLib.h b/ShellPkg/Include/Library/HandleParsingLib.h
index c2e182bd9d..c7e9319023 100644
--- a/ShellPkg/Include/Library/HandleParsingLib.h
+++ b/ShellPkg/Include/Library/HandleParsingLib.h
@@ -1,7 +1,7 @@
/** @file
Provides interface to advanced shell functionality for parsing both handle and protocol database.
- Copyright (c) 2010 - 2013, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -38,9 +38,11 @@ GetStringNameFromGuid(
/**
Function to get the Guid for a protocol or struct based on it's string name.
+ Do not free or modify the returned GUID.
+
@param[in] Name The pointer to the string name.
@param[in] Lang The pointer to the language code (string).
- @param[in] Guid The pointer to the pointer to the Guid.
+ @param[out] Guid The pointer to the pointer to the Guid.
@retval EFI_SUCCESS The operation was successful.
**/
@@ -49,7 +51,7 @@ EFIAPI
GetGuidFromStringName(
IN CONST CHAR16 *Name,
IN CONST CHAR8 *Lang OPTIONAL,
- IN EFI_GUID **Guid
+ OUT EFI_GUID **Guid
);
/**