From 951839f487dc902e7e9b6dfdee774e8f9ff45a44 Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Wed, 18 Apr 2007 02:40:09 +0000 Subject: [PATCH] fix build of d3d9.dll and add it to bootcd svn path=/trunk/; revision=26389 --- reactos/boot/bootdata/packages/reactos.dff | 1 + reactos/dll/directx/d3d9/d3d9.c | 14 ++++++++------ reactos/dll/directx/directx.rbuild | 3 +++ 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/reactos/boot/bootdata/packages/reactos.dff b/reactos/boot/bootdata/packages/reactos.dff index c4b74b0addd..2a14f7dedb2 100644 --- a/reactos/boot/bootdata/packages/reactos.dff +++ b/reactos/boot/bootdata/packages/reactos.dff @@ -114,6 +114,7 @@ dll\directx\dsound\dsound.dll 1 dll\directx\dxdiagn\dxdiagn.dll 1 dll\directx\ddraw\ddraw.dll 1 dll\directx\d3d8thk\d3d8thk.dll 1 +dll\directx\d3d9\d3d9.dll 1 dll\directx\devenum\devenum.dll 1 dll\keyboard\kbdbe\kbdbe.dll 1 diff --git a/reactos/dll/directx/d3d9/d3d9.c b/reactos/dll/directx/d3d9/d3d9.c index be990d68d36..dbc6fb35759 100644 --- a/reactos/dll/directx/d3d9/d3d9.c +++ b/reactos/dll/directx/d3d9/d3d9.c @@ -1,39 +1,41 @@ #include #include "d3d9.h" +#include + HRESULT DLLAPI Direct3DShaderValidatorCreate9(void) { - OutputDebugString("Direct3DShaderValidatorCreate9 not implemented."); + UNIMPLEMENTED return 0; } HRESULT DLLAPI PSGPError(void) { - OutputDebugString("PSGPError not implemented."); + UNIMPLEMENTED return 0; } HRESULT DLLAPI PSGPSampleTexture(void) { - OutputDebugString("PSGPSampleTexture not implemented."); + UNIMPLEMENTED return 0; } HRESULT DLLAPI DebugSetLevel(void) { - OutputDebugString("DebugSetLevel not implemented."); + UNIMPLEMENTED return 0; } HRESULT DLLAPI DebugSetMute(DWORD dw1) { - OutputDebugString("DebugSetMute not implemented."); + UNIMPLEMENTED return 0; } DWORD DLLAPI Direct3DCreate9( UINT SDKVersion ) { - OutputDebugString("Direct3DCreate9 not implemented."); + UNIMPLEMENTED return 0; } diff --git a/reactos/dll/directx/directx.rbuild b/reactos/dll/directx/directx.rbuild index 07ff8376cf3..f21701495ac 100644 --- a/reactos/dll/directx/directx.rbuild +++ b/reactos/dll/directx/directx.rbuild @@ -28,5 +28,8 @@ + + +