]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Universal/Console/VgaClassDxe/ComponentName.h
a702f18f79f7daff58327e0ef124554288a086af
[mirror_edk2.git] / IntelFrameworkModulePkg / Universal / Console / VgaClassDxe / ComponentName.h
1 /*++
2
3 Copyright (c) 2006, Intel Corporation. All rights reserved.
4 This software and associated documentation (if any) is furnished
5 under a license and may only be used or copied in accordance
6 with the terms of the license. Except as permitted by such
7 license, no part of this software or documentation may be
8 reproduced, stored in a retrieval system, or transmitted in any
9 form or by any means without the express written consent of
10 Intel Corporation.
11
12
13 Module Name:
14
15 ComponentName.h
16
17 Abstract:
18
19
20 Revision History
21 --*/
22
23 #ifndef _VGA_CLASS_COMPONENT_NAME_H
24 #define _VGA_CLASS_COMPONENT_NAME_H
25
26 #include <PiDxe.h>
27 #include <Protocol/ComponentName.h>
28
29 extern EFI_COMPONENT_NAME_PROTOCOL gVgaClassComponentName;
30
31 //
32 // EFI Component Name Functions
33 //
34 EFI_STATUS
35 EFIAPI
36 VgaClassComponentNameGetDriverName (
37 IN EFI_COMPONENT_NAME_PROTOCOL *This,
38 IN CHAR8 *Language,
39 OUT CHAR16 **DriverName
40 )
41 /*++
42
43 Routine Description:
44
45 GC_TODO: Add function description
46
47 Arguments:
48
49 This - GC_TODO: add argument description
50 Language - GC_TODO: add argument description
51 DriverName - GC_TODO: add argument description
52
53 Returns:
54
55 GC_TODO: add return values
56
57 --*/
58 ;
59
60 EFI_STATUS
61 EFIAPI
62 VgaClassComponentNameGetControllerName (
63 IN EFI_COMPONENT_NAME_PROTOCOL *This,
64 IN EFI_HANDLE ControllerHandle,
65 IN EFI_HANDLE ChildHandle OPTIONAL,
66 IN CHAR8 *Language,
67 OUT CHAR16 **ControllerName
68 )
69 /*++
70
71 Routine Description:
72
73 GC_TODO: Add function description
74
75 Arguments:
76
77 This - GC_TODO: add argument description
78 ControllerHandle - GC_TODO: add argument description
79 ChildHandle - GC_TODO: add argument description
80 Language - GC_TODO: add argument description
81 ControllerName - GC_TODO: add argument description
82
83 Returns:
84
85 GC_TODO: add return values
86
87 --*/
88 ;
89
90 #endif