]> git.proxmox.com Git - mirror_edk2.git/blob - Nt32Pkg/Include/Common/WinNTInclude.h
7d62c9d551256e842b3c57cf2e0c93357525f64b
[mirror_edk2.git] / Nt32Pkg / Include / Common / WinNTInclude.h
1 /**@file
2
3 Copyright (c) 2006, 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 WinNtLib.h
14
15 Abstract:
16 Public include file for the WinNt Library
17
18 **/
19
20 #ifndef __WIN_NT_INCLUDE_H__
21 #define __WIN_NT_INCLUDE_H__
22
23 //
24 // Win32 include files do not compile clean with /W4, so we use the warning
25 // pragma to suppress the warnings for Win32 only. This way our code can stil
26 // compile at /W4 (highest warning level) with /WX (warnings cause build
27 // errors).
28 //
29 #pragma warning(disable : 4115)
30 #pragma warning(disable : 4201)
31 #pragma warning(disable : 4028)
32 #pragma warning(disable : 4133)
33
34 #define GUID _WINNT_DUP_GUID_____
35 #define _LIST_ENTRY _WINNT_DUP_LIST_ENTRY_FORWARD
36 #define LIST_ENTRY _WINNT_DUP_LIST_ENTRY
37 #define InterlockedIncrement _WINNT_DUP_InterlockedIncrement
38 #define InterlockedDecrement _WINNT_DUP_InterlockedDecrement
39 #define InterlockedCompareExchange64 _WINNT_DUP_InterlockedCompareExchange64
40 #undef UNALIGNED
41 #undef CONST
42 #undef VOID
43 #undef DEBUG_EVENT
44
45 // WQBugBug: This typedef is to make "windows.h" buildable.
46 // It should be removed after the root cause why
47 // size_t is undefined when go into the line below is found.
48 typedef UINT32 size_t ;
49
50 #include "windows.h"
51
52 #undef GUID
53 #undef _LIST_ENTRY
54 #undef LIST_ENTRY
55 #undef InterlockedIncrement
56 #undef InterlockedDecrement
57 #undef InterlockedCompareExchange64
58 #undef InterlockedCompareExchangePointer
59 #undef CreateEventEx
60
61 #define VOID void
62
63 //
64 // Prevent collisions with Windows API name macros that deal with Unicode/Not issues
65 //
66 #undef LoadImage
67 #undef CreateEvent
68
69 //
70 // Set the warnings back on as the EFI code must be /W4.
71 //
72 #pragma warning(default : 4115)
73 #pragma warning(default : 4201)
74
75
76 #endif