]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/IsaFloppy/Dxe/ComponentName.h
Import IsaFloppy Dxe and Pei in IntelFrameworkModulePkg.
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Isa / IsaFloppy / Dxe / 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 Module Name:
13
14 ComponentName.h
15
16 Abstract:
17
18 Revision History:
19
20 --*/
21
22 #ifndef _ISA_FLOPPY_COMPONENT_NAME_H
23 #define _ISA_FLOPPY_COMPONENT_NAME_H
24
25 #define FLOPPY_DRIVE_NAME L"ISA Floppy Drive # "
26 #define FLOPPY_DRIVE_NAME_ASCII_LEN (sizeof ("ISA Floppy Drive # ") - 1)
27 #define ADD_FLOPPY_NAME(x) AddName ((x))
28
29 extern EFI_COMPONENT_NAME_PROTOCOL gIsaFloppyComponentName;
30
31 //
32 // EFI Component Name Functions
33 //
34 EFI_STATUS
35 EFIAPI
36 IsaFloppyComponentNameGetDriverName (
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 IsaFloppyComponentNameGetControllerName (
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 VOID
91 AddName (
92 IN FDC_BLK_IO_DEV *FdcDev
93 )
94 /*++
95
96 Routine Description:
97
98 GC_TODO: Add function description
99
100 Arguments:
101
102 FdcDev - GC_TODO: add argument description
103
104 Returns:
105
106 GC_TODO: add return values
107
108 --*/
109 ;
110
111 #endif