]> git.proxmox.com Git - mirror_edk2.git/blob - WinNtBlockIo.inf
4884adf1edd4f2e9e69d9a29f4928d810d8cac20
[mirror_edk2.git] / WinNtBlockIo.inf
1 #/** @file
2 # Block Io driver
3 #
4 # Produce block IO abstractions for real devices on your PC using Win32 APIs.
5 # The configuration of what devices to mount or emulate comes from NT
6 # environment variables. The variables must be visible to the Microsoft*
7 # Developer Studio for them to work.
8 # Copyright (c) 2006 - 2007, Intel Corporation
9 #
10 # All rights reserved. This program and the accompanying materials
11 # are licensed and made available under the terms and conditions of the BSD License
12 # which accompanies this distribution. The full text of the license may be found at
13 # http://opensource.org/licenses/bsd-license.php
14 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16 #
17 #
18 #**/
19
20 ################################################################################
21 #
22 # Defines Section - statements that will be processed to create a Makefile.
23 #
24 ################################################################################
25 [Defines]
26 INF_VERSION = 0x00010005
27 BASE_NAME = WinNtBlockIo
28 FILE_GUID = F479E147-A125-11d4-BCFC-0080C73C8881
29 MODULE_TYPE = UEFI_DRIVER
30 VERSION_STRING = 1.0
31 EDK_RELEASE_VERSION = 0x00020000
32 EFI_SPECIFICATION_VERSION = 0x00020000
33
34 ENTRY_POINT = InitializeWinNtBlockIo
35
36 #
37 # The following information is for reference only and not required by the build tools.
38 #
39 # VALID_ARCHITECTURES = IA32
40 #
41 # DRIVER_BINDING = gWinNtBlockIoDriverBinding
42 # COMPONENT_NAME = gWinNtBlockIoComponentName
43 # DRIVER_DIAG = gWinNtBlockIoDriverDiagnostics
44 #
45
46 ################################################################################
47 #
48 # Sources Section - list of files that are required for the build to succeed.
49 #
50 ################################################################################
51
52 [Sources.common]
53 DriverDiagnostics.c
54 DriverConfiguration.c
55 ComponentName.c
56 WinNtBlockIo.c
57 WinNtBlockIo.h
58
59
60 ################################################################################
61 #
62 # Package Dependency Section - list of Package files that are required for
63 # this module.
64 #
65 ################################################################################
66
67 [Packages]
68 MdePkg/MdePkg.dec
69 Nt32Pkg/Nt32Pkg.dec
70
71
72 ################################################################################
73 #
74 # Library Class Section - list of Library Classes that are required for
75 # this module.
76 #
77 ################################################################################
78
79 [LibraryClasses]
80 MemoryAllocationLib
81 UefiBootServicesTableLib
82 BaseMemoryLib
83 UefiLib
84 UefiDriverEntryPoint
85 BaseLib
86 DebugLib
87
88
89 ################################################################################
90 #
91 # Guid C Name Section - list of Guids that this module uses or produces.
92 #
93 ################################################################################
94
95 [Guids]
96 gEfiWinNtPhysicalDisksGuid # SOMETIMES_CONSUMED
97 gEfiWinNtVirtualDisksGuid # ALWAYS_CONSUMED
98
99
100 ################################################################################
101 #
102 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
103 # that this module uses or produces.
104 #
105 ################################################################################
106
107 [Protocols]
108 gEfiBlockIoProtocolGuid # PROTOCOL BY_START
109 gEfiWinNtIoProtocolGuid # PROTOCOL TO_START
110