1## @file 2# This library provides BMP image decoding capability. 3# 4# Copyright (c) 2011 - 2015, Intel Corporation. All rights reserved.<BR> 5# This program and the accompanying materials are licensed and made available under 6# the terms and conditions of the BSD License that accompanies this distribution. 7# The full text of the license may be found at 8# http://opensource.org/licenses/bsd-license.php. 9# 10# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12# 13## 14 15[Defines] 16 INF_VERSION = 0x00010005 17 BASE_NAME = BmpImageDecoderLib 18 MODULE_UNI_FILE = BmpImageDecoderLib.uni 19 FILE_GUID = DF414223-F17C-4022-A1F4-4062612AB00D 20 MODULE_TYPE = DXE_DRIVER 21 VERSION_STRING = 1.0 22 LIBRARY_CLASS = NULL|DXE_DRIVER UEFI_APPLICATION 23 CONSTRUCTOR = BmpImageDecoderLibConstructor 24 25# 26# The following information is for reference only and not required by the build tools. 27# 28# VALID_ARCHITECTURES = IA32 X64 IPF EBC 29# 30 31[Sources] 32 BmpImageDecoderLib.c 33 34[Packages] 35 MdePkg/MdePkg.dec 36 MdeModulePkg/MdeModulePkg.dec 37 38[LibraryClasses] 39 BaseLib 40 MemoryAllocationLib 41 BaseMemoryLib 42 DebugLib 43 ImageDecoderLib