|
|
|||
File indexing completed on 2026-05-10 08:42:48
0001 //===-- windows.h -----------------------------------------------*- C++ -*-===// 0002 // 0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 0004 // See https://llvm.org/LICENSE.txt for license information. 0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 0006 // 0007 //===----------------------------------------------------------------------===// 0008 0009 #ifndef LLDB_lldb_windows_h_ 0010 #define LLDB_lldb_windows_h_ 0011 0012 #define NTDDI_VERSION NTDDI_VISTA 0013 #undef _WIN32_WINNT // undef a previous definition to avoid warning 0014 #define _WIN32_WINNT _WIN32_WINNT_VISTA 0015 #define WIN32_LEAN_AND_MEAN 0016 #define NOGDI 0017 #undef NOMINMAX // undef a previous definition to avoid warning 0018 #define NOMINMAX 0019 #include <windows.h> 0020 #undef CreateProcess 0021 #undef GetMessage 0022 #undef GetUserName 0023 #undef LoadImage 0024 #undef Yield 0025 #undef far 0026 #undef near 0027 #undef FAR 0028 #undef NEAR 0029 #define FAR 0030 #define NEAR 0031 0032 #endif // LLDB_lldb_windows_h_
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|