1 /* 2 * COPYRIGHT: See COPYING in the top level directory 3 * PROJECT: ReactOS ReactX 4 * FILE: dll/directx/d3d9/d3d9_common.h 5 * PURPOSE: d3d9.dll common functions, defines and macros 6 * PROGRAMERS: Gregor Brunmar <gregor (dot) brunmar (at) home (dot) se> 7 */ 8 #ifndef _D3D9_COMMON_H_ 9 #define _D3D9_COMMON_H_ 10 11 #define COBJMACROS 12 #include <windows.h> 13 14 #define DLLAPI __declspec(dllexport) 15 #define DX_D3D9_DEBUG 0x80000000 16 17 extern struct IDirect3D9Vtbl Direct3D9_Vtbl; 18 19 #endif // _D3D9_COMMON_H_ 20