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