]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/CodeTools/Source/Common/WinNtInclude.h
More renames for Tool Packages
[mirror_edk2.git] / Tools / CodeTools / Source / Common / WinNtInclude.h
CommitLineData
878ddf1f 1/*--\r
2\r
3Copyright (c) 2006, Intel Corporation\r
4All rights reserved. This program and the accompanying materials\r
5are licensed and made available under the terms and conditions of the BSD License\r
6which accompanies this distribution. The full text of the license may be found at\r
7http://opensource.org/licenses/bsd-license.php\r
8\r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
11\r
12Module Name:\r
13 WinNtInclude.h\r
14\r
15Abstract:\r
16 Include file for the WinNt Library\r
17\r
18--*/\r
19\r
20#ifndef __WIN_NT_INCLUDE_H__\r
21#define __WIN_NT_INCLUDE_H__\r
22\r
23//\r
24// Win32 include files do not compile clean with /W4, so we use the warning\r
25// pragma to suppress the warnings for Win32 only. This way our code can stil\r
26// compile at /W4 (highest warning level) with /WX (warnings cause build\r
27// errors).\r
28//\r
29#pragma warning(disable : 4115)\r
30#pragma warning(disable : 4201)\r
31#pragma warning(disable : 4214)\r
32#pragma warning(disable : 4028)\r
33#pragma warning(disable : 4133)\r
34\r
35#define GUID _WINNT_DUP_GUID_____\r
36#define _LIST_ENTRY _WINNT_DUP_LIST_ENTRY_FORWARD\r
37#define LIST_ENTRY _WINNT_DUP_LIST_ENTRY\r
38#define InterlockedIncrement _WINNT_DUP_InterlockedIncrement\r
39#define InterlockedDecrement _WINNT_DUP_InterlockedDecrement\r
40#define InterlockedCompareExchange64 _WINNT_DUP_InterlockedCompareExchange64\r
41#undef UNALIGNED\r
42#undef CONST\r
43#undef VOID\r
44\r
45#ifndef __GNUC__\r
46#include "windows.h"\r
47#endif\r
48\r
49#undef GUID\r
50#undef _LIST_ENTRY\r
51#undef LIST_ENTRY\r
52#undef InterlockedIncrement\r
53#undef InterlockedDecrement\r
54#undef InterlockedCompareExchange64\r
55#undef InterlockedCompareExchangePointer\r
56\r
57#define VOID void\r
58\r
59//\r
60// Prevent collisions with Windows API name macros that deal with Unicode/Not issues\r
61//\r
62#undef LoadImage\r
63#undef CreateEvent\r
64\r
65//\r
66// Set the warnings back on as the EFI code must be /W4.\r
67//\r
68#pragma warning(default : 4115)\r
69#pragma warning(default : 4201)\r
70#pragma warning(default : 4214)\r
71\r
72\r
73#endif\r