1 /*++
2 
3 Copyright (c) 2004, Intel Corporation. All rights reserved.<BR>
4 This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution.  The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8 
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11 
12 Module Name:
13 
14   EfiWinNt.h
15 
16 Abstract:
17 
18   EFI master include file for WinNt components.
19 
20 --*/
21 
22 #ifndef _EFI_WIN_NT_H_
23 
24 #ifdef EFI_NT_EMULATOR
25 
26 #define _EFI_WIN_NT_H_
27 
28 #pragma warning(disable : 4115)
29 #pragma warning(disable : 4201)
30 #pragma warning(disable : 4214)
31 
32 #include "windows.h"
33 #include "stdio.h"
34 
35 //
36 // Set the warnings back on so the EFI code must be /W4.
37 //
38 #pragma warning(default : 4115)
39 #pragma warning(default : 4201)
40 #pragma warning(default : 4214)
41 
42 #endif
43 
44 #include "Tiano.h"
45 
46 #endif
47