1 /* 2 * COPYRIGHT: See COPYING in the top level directory 3 * PROJECT: ReactOS ReactX 4 * FILE: dll/directx/d3d9/device.h 5 * PURPOSE: Direct3D9's device creation 6 * PROGRAMERS: Gregor Gullwi <gbrunmar (dot) ros (at) gmail (dot) com> 7 */ 8 9 #ifndef _DEVICE_H_ 10 #define _DEVICE_H_ 11 12 #include "d3d9_haldevice.h" 13 14 HRESULT CreateD3D9HalDevice(LPDIRECT3D9_INT pDirect3D9, UINT Adapter, 15 HWND hFocusWindow, DWORD BehaviourFlags, 16 D3DPRESENT_PARAMETERS* pPresentationParameters, 17 DWORD NumAdaptersToCreate, 18 struct IDirect3DDevice9** ppReturnedDeviceInterface); 19 20 #endif // _DEVICE_H_ 21