blob: 3dc9f77f8e241b519257b6dc24415625201f21b0 [file] [log] [blame]
//===-- lldb-windows.h ------------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLDB_lldb_windows_h_
#define LLDB_lldb_windows_h_
#define NTDDI_VERSION NTDDI_VISTA
#undef _WIN32_WINNT // undef a previous definition to avoid warning
#define _WIN32_WINNT _WIN32_WINNT_VISTA
#define WIN32_LEAN_AND_MEAN
#define NOGDI
#undef NOMINMAX // undef a previous definition to avoid warning
#define NOMINMAX
#include <windows.h>
#undef GetUserName
#undef LoadImage
#undef CreateProcess
#undef far
#undef near
#undef FAR
#undef NEAR
#define FAR
#define NEAR
#endif // LLDB_lldb_windows_h_