mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 16:48:16 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
19 lines
528 B
C
19 lines
528 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS ReactX
|
|
* FILE: dll/directx/d3d9/d3d9_common.h
|
|
* PURPOSE: d3d9.dll common functions, defines and macros
|
|
* PROGRAMERS: Gregor Brunmar <gregor (dot) brunmar (at) home (dot) se>
|
|
*/
|
|
#ifndef _D3D9_COMMON_H_
|
|
#define _D3D9_COMMON_H_
|
|
|
|
#define COBJMACROS
|
|
#include <windows.h>
|
|
|
|
#define DLLAPI __declspec(dllexport)
|
|
#define DX_D3D9_DEBUG 0x80000000
|
|
|
|
extern struct IDirect3D9Vtbl Direct3D9_Vtbl;
|
|
|
|
#endif // _D3D9_COMMON_H_
|