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