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 @@ + + +