]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/ComponentName.h
Correct all header files for doxygen format and correct the license issue for VgaClas...
[mirror_edk2.git] / IntelFrameworkModulePkg / Universal / Console / VgaClassDxe / ComponentName.h
1 /**@file
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 **/
13
14 #ifndef _VGA_CLASS_COMPONENT_NAME_H
15 #define _VGA_CLASS_COMPONENT_NAME_H
16
17 #include <PiDxe.h>
18 #include <Protocol/ComponentName.h>
19
20 extern EFI_COMPONENT_NAME_PROTOCOL gVgaClassComponentName;
21
22 //
23 // EFI Component Name Functions
24 //
25 EFI_STATUS
26 EFIAPI
27 VgaClassComponentNameGetDriverName (
28 IN EFI_COMPONENT_NAME_PROTOCOL *This,
29 IN CHAR8 *Language,
30 OUT CHAR16 **DriverName
31 )
32 /*++
33
34 Routine Description:
35
36 GC_TODO: Add function description
37
38 Arguments:
39
40 This - GC_TODO: add argument description
41 Language - GC_TODO: add argument description
42 DriverName - GC_TODO: add argument description
43
44 Returns:
45
46 GC_TODO: add return values
47
48 --*/
49 ;
50
51 EFI_STATUS
52 EFIAPI
53 VgaClassComponentNameGetControllerName (
54 IN EFI_COMPONENT_NAME_PROTOCOL *This,
55 IN EFI_HANDLE ControllerHandle,
56 IN EFI_HANDLE ChildHandle OPTIONAL,
57 IN CHAR8 *Language,
58 OUT CHAR16 **ControllerName
59 )
60 /*++
61
62 Routine Description:
63
64 GC_TODO: Add function description
65
66 Arguments:
67
68 This - GC_TODO: add argument description
69 ControllerHandle - GC_TODO: add argument description
70 ChildHandle - GC_TODO: add argument description
71 Language - GC_TODO: add argument description
72 ControllerName - GC_TODO: add argument description
73
74 Returns:
75
76 GC_TODO: add return values
77
78 --*/
79 ;
80
81 #endif