]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/ComponentName.h
change TokenSpaceGuid to the package Token Space Guid
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Isa / IsaBusDxe / ComponentName.h
1 /**@file
2
3 Copyright (c) 2006 - 2007, Intel Corporation<BR>
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 _EFI_ISA_BUS_COMPONENT_NAME_H
15 #define _EFI_ISA_BUS_COMPONENT_NAME_H
16
17 //
18 // Include common header file for this module.
19 //
20 #include "InternalIsaBus.h"
21
22 extern EFI_COMPONENT_NAME_PROTOCOL gIsaBusComponentName;
23
24 //
25 // EFI Component Name Functions
26 //
27 EFI_STATUS
28 EFIAPI
29 IsaBusComponentNameGetDriverName (
30 IN EFI_COMPONENT_NAME_PROTOCOL *This,
31 IN CHAR8 *Language,
32 OUT CHAR16 **DriverName
33 )
34 /*++
35
36 Routine Description:
37
38 GC_TODO: Add function description
39
40 Arguments:
41
42 This - GC_TODO: add argument description
43 Language - GC_TODO: add argument description
44 DriverName - GC_TODO: add argument description
45
46 Returns:
47
48 GC_TODO: add return values
49
50 --*/
51 ;
52
53 EFI_STATUS
54 EFIAPI
55 IsaBusComponentNameGetControllerName (
56 IN EFI_COMPONENT_NAME_PROTOCOL *This,
57 IN EFI_HANDLE ControllerHandle,
58 IN EFI_HANDLE ChildHandle OPTIONAL,
59 IN CHAR8 *Language,
60 OUT CHAR16 **ControllerName
61 )
62 /*++
63
64 Routine Description:
65
66 GC_TODO: Add function description
67
68 Arguments:
69
70 This - GC_TODO: add argument description
71 ControllerHandle - GC_TODO: add argument description
72 ChildHandle - GC_TODO: add argument description
73 Language - GC_TODO: add argument description
74 ControllerName - GC_TODO: add argument description
75
76 Returns:
77
78 GC_TODO: add return values
79
80 --*/
81 ;
82
83 #endif