]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/ComponentName.h
a30946493f27818958d9067a1b487d214012e73b
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Pci / PciBusDxe / 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
15 #ifndef _EFI_PCI_BUS_COMPONENT_NAME_H
16 #define _EFI_PCI_BUS_COMPONENT_NAME_H
17
18 extern EFI_COMPONENT_NAME_PROTOCOL gPciBusComponentName;
19
20 //
21 // EFI Component Name Functions
22 //
23 EFI_STATUS
24 EFIAPI
25 PciBusComponentNameGetDriverName (
26 IN EFI_COMPONENT_NAME_PROTOCOL *This,
27 IN CHAR8 *Language,
28 OUT CHAR16 **DriverName
29 )
30 /*++
31
32 Routine Description:
33
34 TODO: Add function description
35
36 Arguments:
37
38 This - TODO: add argument description
39 Language - TODO: add argument description
40 DriverName - TODO: add argument description
41
42 Returns:
43
44 TODO: add return values
45
46 --*/
47 ;
48
49 EFI_STATUS
50 EFIAPI
51 PciBusComponentNameGetControllerName (
52 IN EFI_COMPONENT_NAME_PROTOCOL *This,
53 IN EFI_HANDLE ControllerHandle,
54 IN EFI_HANDLE ChildHandle OPTIONAL,
55 IN CHAR8 *Language,
56 OUT CHAR16 **ControllerName
57 )
58 /*++
59
60 Routine Description:
61
62 TODO: Add function description
63
64 Arguments:
65
66 This - TODO: add argument description
67 ControllerHandle - TODO: add argument description
68 ChildHandle - TODO: add argument description
69 Language - TODO: add argument description
70 ControllerName - TODO: add argument description
71
72 Returns:
73
74 TODO: add return values
75
76 --*/
77 ;
78
79 #endif