mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
fix build of d3d9.dll and add it to bootcd
svn path=/trunk/; revision=26389
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user