From fb3ba4445f451947d72e29e7564582d3eb234636 Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Wed, 18 Apr 2007 18:19:26 +0000 Subject: [PATCH] fix build of d3d8.dll and add it to bootcd (needed by Trillian) svn path=/trunk/; revision=26401 --- reactos/dll/directx/d3d8/d3d8.c | 10 ++++++---- reactos/dll/directx/d3d8/d3d8.rbuild | 5 +++++ reactos/dll/directx/directx.rbuild | 3 +++ 3 files changed, 14 insertions(+), 4 deletions(-) create mode 100644 reactos/dll/directx/d3d8/d3d8.rbuild diff --git a/reactos/dll/directx/d3d8/d3d8.c b/reactos/dll/directx/d3d8/d3d8.c index d81bb9db286..ee1ed978478 100644 --- a/reactos/dll/directx/d3d8/d3d8.c +++ b/reactos/dll/directx/d3d8/d3d8.c @@ -1,26 +1,28 @@ #include #include "d3d8.h" +#include + HRESULT DLLAPI ValidatePixelShader(void) { - OutputDebugString("ValidateVertexShader not implemented."); + UNIMPLEMENTED return 0; } HRESULT DLLAPI ValidateVertexShader(void) { - OutputDebugString("ValidateVertexShader not implemented."); + UNIMPLEMENTED return 0; } HRESULT DLLAPI DebugSetMute(DWORD dw1) { - OutputDebugString("DebugSetMute not implemented."); + UNIMPLEMENTED return 0; } DWORD DLLAPI Direct3DCreate8( UINT SDKVersion ) { - OutputDebugString("Direct3DCreate8 not implemented."); + UNIMPLEMENTED return 0; } diff --git a/reactos/dll/directx/d3d8/d3d8.rbuild b/reactos/dll/directx/d3d8/d3d8.rbuild new file mode 100644 index 00000000000..5f113d5058c --- /dev/null +++ b/reactos/dll/directx/d3d8/d3d8.rbuild @@ -0,0 +1,5 @@ + + + d3d8.c + d3d8.rc + diff --git a/reactos/dll/directx/directx.rbuild b/reactos/dll/directx/directx.rbuild index f21701495ac..f9258c94991 100644 --- a/reactos/dll/directx/directx.rbuild +++ b/reactos/dll/directx/directx.rbuild @@ -28,6 +28,9 @@ + + +