1## @file 2# OEM hook status code handler driver which produces general handler and hook it 3# onto the DXE status code router. 4# 5# Copyright (c) 2007 - 2011, Intel Corporation. All rights reserved.<BR> 6# This program and the accompanying materials 7# are licensed and made available under the terms and conditions of the BSD License 8# which accompanies this distribution. The full text of the license may be found at 9# http://opensource.org/licenses/bsd-license.php 10# 11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13# 14# 15## 16 17[Defines] 18 INF_VERSION = 0x00010005 19 BASE_NAME = WinNtOemHookStatusCodeHandlerDxe 20 FILE_GUID = CA4233AD-847E-4E5D-AD3F-21CABFE5E23C 21 MODULE_TYPE = DXE_DRIVER 22 VERSION_STRING = 1.0 23 ENTRY_POINT = WinNtOemHookStatusCodeHandlerDxeEntry 24 25# 26# The following information is for reference only and not required by the build tools. 27# 28# VALID_ARCHITECTURES = IA32 29# 30# HOB Guid C Name: gEfiWinNtThunkProtocolGuid Hob Type: GUID_EXTENSION 31# 32 33[Sources] 34 WinNtOemHookStatusCodeHandlerDxe.c 35 36 37[Packages] 38 Nt32Pkg/Nt32Pkg.dec 39 MdePkg/MdePkg.dec 40 MdeModulePkg/MdeModulePkg.dec 41 42[LibraryClasses] 43 DebugLib 44 UefiDriverEntryPoint 45 UefiBootServicesTableLib 46 OemHookStatusCodeLib 47 48[Protocols] 49 gEfiRscHandlerProtocolGuid ## CONSUMES 50 51[Depex] 52 gEfiRscHandlerProtocolGuid 53