]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Include/Protocol/ComponentName2.h
edk2/MdePkg/Include/Ia32/ProcessorBind.h:
[mirror_edk2.git] / MdePkg / Include / Protocol / ComponentName2.h
index 2a907f52d1c720f78561a5f026e09bd3c5e040ea..a9562474afecb1711c8d2a2b714200f06b6e47e2 100644 (file)
@@ -1,7 +1,9 @@
 /** @file\r
-  EFI Component Name 2 Protocol\r
+  UEFI Component Name 2 Protocol as defined in the UEFI 2.1 specification.\r
+  This protocol is used to retrieve user readable names of drivers \r
+  and controllers managed by UEFI Drivers.\r
 \r
-  Copyright (c) 2006 - 2007, Intel Corporation\r
+  Copyright (c) 2006 - 2008, Intel Corporation\r
   All rights reserved. This program and the accompanying materials                          \r
   are licensed and made available under the terms and conditions of the BSD License         \r
   which accompanies this distribution.  The full text of the license may be found at        \r
 #ifndef __EFI_COMPONENT_NAME2_H__\r
 #define __EFI_COMPONENT_NAME2_H__\r
 \r
-//\r
-// Global ID for the Component Name Protocol\r
-//\r
+#include <PiDxe.h>\r
+\r
+///\r
+/// Global ID for the Component Name Protocol\r
+///\r
 #define EFI_COMPONENT_NAME2_PROTOCOL_GUID \\r
   {0x6a7a5cff, 0xe8d9, 0x4f70, { 0xba, 0xda, 0x75, 0xab, 0x30, 0x25, 0xce, 0x14 } }\r
 \r
@@ -29,7 +33,7 @@ typedef struct _EFI_COMPONENT_NAME2_PROTOCOL  EFI_COMPONENT_NAME2_PROTOCOL;
   the EFI Driver.\r
 \r
   @param  This       A pointer to the\r
-                     EFI_COMPONENT_NAME_PROTOCOL instance.\r
+                     EFI_COMPONENT_NAME2_PROTOCOL instance.\r
   \r
   @param  Language   A pointer to a Null-terminated ASCII string\r
                      array indicating the language. This is the\r
@@ -62,7 +66,7 @@ typedef struct _EFI_COMPONENT_NAME2_PROTOCOL  EFI_COMPONENT_NAME2_PROTOCOL;
 **/\r
 typedef\r
 EFI_STATUS\r
-(EFIAPI *EFI_COMPONENT_NAME2_GET_DRIVER_NAME) (\r
+(EFIAPI *EFI_COMPONENT_NAME2_GET_DRIVER_NAME)(\r
   IN EFI_COMPONENT_NAME2_PROTOCOL          *This,\r
   IN  CHAR8                                *Language,\r
   OUT CHAR16                               **DriverName\r
@@ -74,7 +78,7 @@ EFI_STATUS
   the controller that is being managed by an EFI Driver.\r
 \r
   @param  This             A pointer to the\r
-                           EFI_COMPONENT_NAME_PROTOCOL instance.\r
+                           EFI_COMPONENT_NAME2_PROTOCOL instance.\r
 \r
   @param  ControllerHandle The handle of a controller that the\r
                            driver specified by This is managing.\r
@@ -141,7 +145,7 @@ EFI_STATUS
 **/\r
 typedef\r
 EFI_STATUS\r
-(EFIAPI *EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) (\r
+(EFIAPI *EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME)(\r
   IN EFI_COMPONENT_NAME2_PROTOCOL *This,\r
   IN  EFI_HANDLE                  ControllerHandle,\r
   IN  EFI_HANDLE                  ChildHandle        OPTIONAL,\r
@@ -150,8 +154,28 @@ EFI_STATUS
   );\r
 \r
 //\r
-// Interface structure for the Component Name Protocol\r
+// Interface structure for the Component Name2 Protocol\r
 //\r
+/**\r
+  @par Protocol Description:\r
+  This protocol is used to retrieve user readable names of drivers \r
+  and controllers managed by UEFI Drivers.\r
+\r
+  @param GetDriverName\r
+  Retrieves a Unicode string that is the user readable name of the driver.\r
+  \r
+  @param GetControllerName\r
+  Retrieves a Unicode string that is the user readable name of a\r
+  controller that is being managed by a driver.\r
+  \r
+  @param SupportedLanguages \r
+  A Null-terminated ASCII string array that contains one or more\r
+  supported language codes. This is the list of language codes that\r
+  this protocol supports. The number of languages supported by a\r
+  driver is up to the driver writer. SupportedLanguages is\r
+  specified in RFC 3066 format.\r
+  \r
+**/\r
 struct _EFI_COMPONENT_NAME2_PROTOCOL {\r
   EFI_COMPONENT_NAME2_GET_DRIVER_NAME      GetDriverName;\r
   EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME  GetControllerName;\r