]> git.proxmox.com Git - mirror_edk2.git/blob - EdkNt32Pkg/Include/Common/WinNTInclude.h
1.Fix .global issue in GAS (EdkT207).
[mirror_edk2.git] / EdkNt32Pkg / Include / Common / WinNTInclude.h
1 /*++
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. 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 : 4214)
32 #pragma warning(disable : 4028)
33 #pragma warning(disable : 4133)
34
35 #define GUID _WINNT_DUP_GUID_____
36 #define _LIST_ENTRY _WINNT_DUP_LIST_ENTRY_FORWARD
37 #define LIST_ENTRY _WINNT_DUP_LIST_ENTRY
38 #define InterlockedIncrement _WINNT_DUP_InterlockedIncrement
39 #define InterlockedDecrement _WINNT_DUP_InterlockedDecrement
40 #define InterlockedCompareExchange64 _WINNT_DUP_InterlockedCompareExchange64
41 #undef UNALIGNED
42 #undef CONST
43 #undef VOID
44
45 #include "windows.h"
46
47 #undef GUID
48 #undef _LIST_ENTRY
49 #undef LIST_ENTRY
50 #undef InterlockedIncrement
51 #undef InterlockedDecrement
52 #undef InterlockedCompareExchange64
53 #undef InterlockedCompareExchangePointer
54
55 #define VOID void
56
57 //
58 // Prevent collisions with Windows API name macros that deal with Unicode/Not issues
59 //
60 #undef LoadImage
61 #undef CreateEvent
62
63 //
64 // Set the warnings back on as the EFI code must be /W4.
65 //
66 #pragma warning(default : 4115)
67 #pragma warning(default : 4201)
68 #pragma warning(default : 4214)
69
70
71 #endif