]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/ComponentName.h
Update to BSD license header.
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Isa / IsaBusDxe / ComponentName.h
1 /*++
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 Module Name:
13
14 ComponentName.h
15
16 Abstract:
17
18
19 Revision History:
20
21 --*/
22
23 #ifndef _EFI_ISA_BUS_COMPONENT_NAME_H
24 #define _EFI_ISA_BUS_COMPONENT_NAME_H
25
26 //
27 // Include common header file for this module.
28 //
29 #include "CommonHeader.h"
30
31 extern EFI_COMPONENT_NAME_PROTOCOL gIsaBusComponentName;
32
33 //
34 // EFI Component Name Functions
35 //
36 EFI_STATUS
37 EFIAPI
38 IsaBusComponentNameGetDriverName (
39 IN EFI_COMPONENT_NAME_PROTOCOL *This,
40 IN CHAR8 *Language,
41 OUT CHAR16 **DriverName
42 )
43 /*++
44
45 Routine Description:
46
47 GC_TODO: Add function description
48
49 Arguments:
50
51 This - GC_TODO: add argument description
52 Language - GC_TODO: add argument description
53 DriverName - GC_TODO: add argument description
54
55 Returns:
56
57 GC_TODO: add return values
58
59 --*/
60 ;
61
62 EFI_STATUS
63 EFIAPI
64 IsaBusComponentNameGetControllerName (
65 IN EFI_COMPONENT_NAME_PROTOCOL *This,
66 IN EFI_HANDLE ControllerHandle,
67 IN EFI_HANDLE ChildHandle OPTIONAL,
68 IN CHAR8 *Language,
69 OUT CHAR16 **ControllerName
70 )
71 /*++
72
73 Routine Description:
74
75 GC_TODO: Add function description
76
77 Arguments:
78
79 This - GC_TODO: add argument description
80 ControllerHandle - GC_TODO: add argument description
81 ChildHandle - GC_TODO: add argument description
82 Language - GC_TODO: add argument description
83 ControllerName - GC_TODO: add argument description
84
85 Returns:
86
87 GC_TODO: add return values
88
89 --*/
90 ;
91
92 #endif