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 - 2010, Intel Corporation. All rights reserved.<BR> 9 # 10 # 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 [Defines] 21 INF_VERSION = 0x00010005 22 BASE_NAME = WinNtGopDxe 23 FILE_GUID = 29b3c4c6-e5aa-49e4-8ce0-2772f782ddc2 24 MODULE_TYPE = UEFI_DRIVER 25 VERSION_STRING = 1.0 26 27 ENTRY_POINT = InitializeWinNtGop 28 29 # 30 # The following information is for reference only and not required by the build tools. 31 # 32 # VALID_ARCHITECTURES = IA32 33 # 34 # DRIVER_BINDING = gWinNtGopDriverBinding 35 # COMPONENT_NAME = gWinNtGopComponentName 36 # 37 38 [Sources] 39 WinNtGopDriver.c 40 ComponentName.c 41 WinNtGop.h 42 WinNtGopInput.c 43 WinNtGopScreen.c 44 45 [Packages] 46 MdePkg/MdePkg.dec 47 Nt32Pkg/Nt32Pkg.dec 48 49 50 [LibraryClasses] 51 MemoryAllocationLib 52 UefiBootServicesTableLib 53 BaseMemoryLib 54 UefiLib 55 UefiDriverEntryPoint 56 BaseLib 57 DebugLib 58 59 60 [Guids] 61 gEfiEventExitBootServicesGuid # SOMETIMES_CONSUMED Create Event: EVENT_GROUP_GUID 62 gEfiWinNtGopGuid # ALWAYS_CONSUMED 63 64 [Protocols] 65 gEfiGraphicsOutputProtocolGuid # PROTOCOL BY_START 66 gEfiSimpleTextInProtocolGuid # PROTOCOL BY_START 67 gEfiSimpleTextInputExProtocolGuid # PROTOCOL BY_START 68 gEfiWinNtIoProtocolGuid # PROTOCOL TO_START 69