]> git.proxmox.com Git - mirror_edk2.git/blame - Nt32Pkg/Include/Common/WinNTInclude.h
Update the copyright notice format
[mirror_edk2.git] / Nt32Pkg / Include / Common / WinNTInclude.h
CommitLineData
6ae81428 1/**@file\r
45a20a7f 2\r
8f2a5f80
HT
3Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>\r
4This program and the accompanying materials\r
45a20a7f 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 WinNtLib.h\r
14\r
15Abstract:\r
16 Public include file for the WinNt Library\r
17\r
6ae81428 18**/\r
45a20a7f 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
45a20a7f 31#pragma warning(disable : 4028)\r
32#pragma warning(disable : 4133)\r
33\r
34#define GUID _WINNT_DUP_GUID_____\r
35#define _LIST_ENTRY _WINNT_DUP_LIST_ENTRY_FORWARD\r
36#define LIST_ENTRY _WINNT_DUP_LIST_ENTRY\r
37#define InterlockedIncrement _WINNT_DUP_InterlockedIncrement\r
38#define InterlockedDecrement _WINNT_DUP_InterlockedDecrement\r
39#define InterlockedCompareExchange64 _WINNT_DUP_InterlockedCompareExchange64\r
40#undef UNALIGNED\r
41#undef CONST\r
42#undef VOID\r
97ccbf27 43#undef DEBUG_EVENT\r
45a20a7f 44\r
5fd5fcd3 45// WQBugBug: This typedef is to make "windows.h" buildable.\r
46// It should be removed after the root cause why\r
47// size_t is undefined when go into the line below is found.\r
48typedef UINT32 size_t ;\r
49\r
45a20a7f 50#include "windows.h"\r
51\r
52#undef GUID\r
53#undef _LIST_ENTRY\r
54#undef LIST_ENTRY\r
55#undef InterlockedIncrement\r
56#undef InterlockedDecrement\r
57#undef InterlockedCompareExchange64\r
58#undef InterlockedCompareExchangePointer\r
781bd432 59#undef CreateEventEx\r
45a20a7f 60\r
61#define VOID void\r
62\r
63//\r
64// Prevent collisions with Windows API name macros that deal with Unicode/Not issues\r
65//\r
66#undef LoadImage\r
67#undef CreateEvent\r
68\r
69//\r
70// Set the warnings back on as the EFI code must be /W4.\r
71//\r
72#pragma warning(default : 4115)\r
73#pragma warning(default : 4201)\r
45a20a7f 74\r
75\r
76#endif\r