af062818b47340eef15700d2f0211576ba3506eevboxsync/*
af062818b47340eef15700d2f0211576ba3506eevboxsync * Copyright (C) the Wine project
af062818b47340eef15700d2f0211576ba3506eevboxsync *
af062818b47340eef15700d2f0211576ba3506eevboxsync * This library is free software; you can redistribute it and/or
af062818b47340eef15700d2f0211576ba3506eevboxsync * modify it under the terms of the GNU Lesser General Public
af062818b47340eef15700d2f0211576ba3506eevboxsync * License as published by the Free Software Foundation; either
af062818b47340eef15700d2f0211576ba3506eevboxsync * version 2.1 of the License, or (at your option) any later version.
af062818b47340eef15700d2f0211576ba3506eevboxsync *
af062818b47340eef15700d2f0211576ba3506eevboxsync * This library is distributed in the hope that it will be useful,
af062818b47340eef15700d2f0211576ba3506eevboxsync * but WITHOUT ANY WARRANTY; without even the implied warranty of
af062818b47340eef15700d2f0211576ba3506eevboxsync * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
af062818b47340eef15700d2f0211576ba3506eevboxsync * Lesser General Public License for more details.
af062818b47340eef15700d2f0211576ba3506eevboxsync *
af062818b47340eef15700d2f0211576ba3506eevboxsync * You should have received a copy of the GNU Lesser General Public
af062818b47340eef15700d2f0211576ba3506eevboxsync * License along with this library; if not, write to the Free Software
af062818b47340eef15700d2f0211576ba3506eevboxsync * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
af062818b47340eef15700d2f0211576ba3506eevboxsync */
af062818b47340eef15700d2f0211576ba3506eevboxsync
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync/*
4b9d6701570cb98fd36e209314239d104ec584d3vboxsync * Oracle LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
4b9d6701570cb98fd36e209314239d104ec584d3vboxsync * other than GPL or LGPL is available it will apply instead, Oracle elects to use only
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync * a choice of LGPL license versions is made available with the language indicating
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync * that LGPLv2 or any later version may be used, or where a choice of which version
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync * of the LGPL is applied is otherwise unspecified.
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync */
b955672b950093ff7416d1269dd4d3b69983bd8fvboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef __WINE_WINDOWS_H
af062818b47340eef15700d2f0211576ba3506eevboxsync#define __WINE_WINDOWS_H
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifdef __WINESRC__
af062818b47340eef15700d2f0211576ba3506eevboxsync#error Wine should not include windows.h internally
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#if defined(_MSC_VER) && (_MSC_VER >= 800) && !defined(__cplusplus)
af062818b47340eef15700d2f0211576ba3506eevboxsync/* TYPE_ALIGNMENT generates this - move it outside the warning push/pop scope. */
af062818b47340eef15700d2f0211576ba3506eevboxsync# pragma warning(disable:4116)
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef _INC_WINDOWS
af062818b47340eef15700d2f0211576ba3506eevboxsync#define _INC_WINDOWS
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#if defined(RC_INVOKED) && !defined(NOWINRES)
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <winresrc.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#else /* RC_INVOKED && !NOWINRES */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync/* All the basic includes */
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <excpt.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <stdarg.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <windef.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <winbase.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <wingdi.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <winuser.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <winnls.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <wincon.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <winver.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <winreg.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <winnetwk.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync/* Not so essential ones */
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef WIN32_LEAN_AND_MEAN
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <cderr.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <dde.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <ddeml.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <dlgs.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <lzexpand.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <mmsystem.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <nb30.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <rpc.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <shellapi.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync/* #include <winperf.h> */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef WINE_NOWINSOCK
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <winsock2.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* WINE_NOWINSOCK */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef NOCRYPT
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <wincrypt.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync/* #include <winefs.h> */
af062818b47340eef15700d2f0211576ba3506eevboxsync/* #include <winscard.h> */
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* !NOCRYPT */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef NOGDI
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <winspool.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifdef INC_OLE1
af062818b47340eef15700d2f0211576ba3506eevboxsync/* #include <ole.h> */
af062818b47340eef15700d2f0211576ba3506eevboxsync#else
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <ole2.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <commdlg.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* !NOGDI */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* !WIN32_LEAN_AND_MEAN */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync/* #include <stralign.h> */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifdef INC_OLE2
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <ole2.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* INC_OLE2 */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef NOSERVICE
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <winsvc.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* !NOSERVICE */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef NOMCX
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <mcx.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* !NOMCX */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#ifndef NOIMM
af062818b47340eef15700d2f0211576ba3506eevboxsync#include <imm.h>
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* !NOIMM */
af062818b47340eef15700d2f0211576ba3506eevboxsync
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* RC_INVOKED && !NOWINRES */
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* _INC_WINDOWS */
af062818b47340eef15700d2f0211576ba3506eevboxsync#endif /* __WINE_WINDOWS_H */