f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync/* $Id$ */
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync/** @file
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync * VBoxVideo Display D3D Base Include
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync */
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync/*
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync * Copyright (C) 2013 Oracle Corporation
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync *
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync * available from http://www.virtualbox.org. This file is free software;
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync * you can redistribute it and/or modify it under the terms of the GNU
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync * General Public License (GPL) as published by the Free Software
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync */
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync#ifndef __VBoxDispD3DBase_h_
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync#define __VBoxDispD3DBase_h_
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync# define _InterlockedExchange _InterlockedExchange_StupidDDKVsCompilerCrap
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync# define _InterlockedExchangeAdd _InterlockedExchangeAdd_StupidDDKVsCompilerCrap
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync# define _InterlockedCompareExchange _InterlockedCompareExchange_StupidDDKVsCompilerCrap
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync# define _InterlockedAddLargeStatistic _InterlockedAddLargeStatistic_StupidDDKVsCompilerCrap
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync# define _interlockedbittestandset _interlockedbittestandset_StupidDDKVsCompilerCrap
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync# define _interlockedbittestandreset _interlockedbittestandreset_StupidDDKVsCompilerCrap
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync# define _interlockedbittestandset64 _interlockedbittestandset64_StupidDDKVsCompilerCrap
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync# define _interlockedbittestandreset64 _interlockedbittestandreset64_StupidDDKVsCompilerCrap
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync# pragma warning(disable : 4163)
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync#include <windows.h>
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync# pragma warning(default : 4163)
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync# undef _InterlockedExchange
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync# undef _InterlockedExchangeAdd
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync# undef _InterlockedCompareExchange
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync# undef _InterlockedAddLargeStatistic
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync# undef _interlockedbittestandset
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync# undef _interlockedbittestandreset
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync# undef _interlockedbittestandset64
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync# undef _interlockedbittestandreset64
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync#include <d3d9types.h>
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync//#include <d3dtypes.h>
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync#include <D3dumddi.h>
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync#include <d3dhal.h>
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync
f40b7e1b6b30e7c6a4d2ea52a4b7320614a63ff4vboxsync#endif /* #ifndef __VBoxDispD3DBase_h_ */