]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/WinNtGopDxe/WinNtGop.inf
7130ba3930c9f18897dfcaa23d100223817433a0
[mirror_edk2.git] / Nt32Pkg / WinNtGopDxe / WinNtGop.inf
1 #/** @file
2 # Gop Driver
3 #
4 # GOP is short hand for UEFI Graphics Output protocol.
5 # This file is a verision of GopIo the uses WinNtThunk system calls as an IO
6 # abstraction. For a PCI device WinNtIo would be replaced with
7 # a PCI IO abstraction that abstracted a specific PCI device.
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 = WinNtGop
28 FILE_GUID = 29b3c4c6-e5aa-49e4-8ce0-2772f782ddc2
29 MODULE_TYPE = UEFI_DRIVER
30 VERSION_STRING = 1.0
31 EDK_RELEASE_VERSION = 0x00020000
32 EFI_SPECIFICATION_VERSION = 0x00020000
33
34 ENTRY_POINT = InitializeWinNtGop
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 = gWinNtGopDriverBinding
42 # COMPONENT_NAME = gWinNtGopComponentName
43 #
44
45 ################################################################################
46 #
47 # Sources Section - list of files that are required for the build to succeed.
48 #
49 ################################################################################
50
51 [Sources.common]
52 WinNtGopDriver.c
53 ComponentName.c
54 WinNtGop.h
55 WinNtGopInput.c
56 WinNtGopScreen.c
57
58 ################################################################################
59 #
60 # Includes Section - list of Include locations that are required for
61 # this module.
62 #
63 ################################################################################
64
65 [Includes]
66 $(WORKSPACE)/MdePkg/Include/Library
67
68 ################################################################################
69 #
70 # Package Dependency Section - list of Package files that are required for
71 # this module.
72 #
73 ################################################################################
74
75 [Packages]
76 Nt32Pkg/Nt32Pkg.dec
77 MdePkg/MdePkg.dec
78
79
80 ################################################################################
81 #
82 # Library Class Section - list of Library Classes that are required for
83 # this module.
84 #
85 ################################################################################
86
87 [LibraryClasses]
88 MemoryAllocationLib
89 UefiBootServicesTableLib
90 BaseMemoryLib
91 UefiLib
92 UefiDriverEntryPoint
93 BaseLib
94 DebugLib
95
96
97 ################################################################################
98 #
99 # Guid C Name Section - list of Guids that this module uses or produces.
100 #
101 ################################################################################
102
103 [Guids]
104 gEfiEventExitBootServicesGuid # SOMETIMES_CONSUMED Create Event: EVENT_GROUP_GUID
105 gEfiWinNtGopGuid # ALWAYS_CONSUMED
106
107
108 ################################################################################
109 #
110 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
111 # that this module uses or produces.
112 #
113 ################################################################################
114
115 [Protocols]
116 gEfiGraphicsOutputProtocolGuid # PROTOCOL BY_START
117 gEfiSimpleTextInProtocolGuid # PROTOCOL BY_START
118 gEfiWinNtIoProtocolGuid # PROTOCOL TO_START
119