Home | History | Annotate | Download | only in DxeWinNtLib
      1 ## @file

      2 # A library to produce the global variable 'gWinNt'

      3 #

      4 # This library contains a single global variable 'gWinNt' along with a constructor to initialize that global.

      5 # Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>

      6 #

      7 #  This program and the accompanying materials

      8 #  are licensed and made available under the terms and conditions of the BSD License

      9 #  which accompanies this distribution. The full text of the license may be found at

     10 #  http://opensource.org/licenses/bsd-license.php

     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 [Defines]
     17   INF_VERSION                    = 0x00010005
     18   BASE_NAME                      = DxeWinNtLib
     19   FILE_GUID                      = f6b5871d-5226-41b3-a569-3ff893fdc7bc
     20   MODULE_TYPE                    = DXE_DRIVER
     21   VERSION_STRING                 = 1.0
     22   LIBRARY_CLASS                  = WinNtLib|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SMM_DRIVER UEFI_APPLICATION UEFI_DRIVER 
     23 
     24   CONSTRUCTOR                    = WinNtLibConstructor
     25 
     26 #

     27 # The following information is for reference only and not required by the build tools.

     28 #

     29 #  VALID_ARCHITECTURES           = IA32

     30 #

     31 #  HOB Guid C Name: gEfiWinNtThunkProtocolGuid Hob Type: GUID_EXTENSION

     32 #

     33 
     34 [Sources]
     35   WinNtLib.c
     36 
     37 [Packages]
     38   MdePkg/MdePkg.dec
     39   Nt32Pkg/Nt32Pkg.dec
     40 
     41 [LibraryClasses]
     42   HobLib
     43   DebugLib
     44 
     45 [Protocols]
     46   gEfiWinNtThunkProtocolGuid      # Used as HOB in the code.

     47   
     48