fix build of d3d9.dll and add it to bootcd

svn path=/trunk/; revision=26389
This commit is contained in:
Christoph von Wittich
2007-04-18 02:40:09 +00:00
parent a8e41c3f8f
commit 951839f487
3 changed files with 12 additions and 6 deletions
@@ -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
+8 -6
View File
@@ -1,39 +1,41 @@
#include <windows.h>
#include "d3d9.h"
#include <debug.h>
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;
}
+3
View File
@@ -28,5 +28,8 @@
<directory name="dxdiagn">
<xi:include href="dxdiagn/dxdiagn.rbuild" />
</directory>
<directory name="d3d9">
<xi:include href="d3d9/d3d9.rbuild" />
</directory>
</group>