mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
fix build of d3d8.dll and add it to bootcd (needed by Trillian)
svn path=/trunk/; revision=26401
This commit is contained in:
@@ -1,26 +1,28 @@
|
||||
#include <windows.h>
|
||||
#include "d3d8.h"
|
||||
|
||||
#include <debug.h>
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
<module name="d3d8" type="win32dll" entrypoint="0" installbase="system32" installname="d3d8.dll">
|
||||
<importlibrary definition="d3d8.def" />
|
||||
<file>d3d8.c</file>
|
||||
<file>d3d8.rc</file>
|
||||
</module>
|
||||
@@ -28,6 +28,9 @@
|
||||
<directory name="dxdiagn">
|
||||
<xi:include href="dxdiagn/dxdiagn.rbuild" />
|
||||
</directory>
|
||||
<directory name="d3d8">
|
||||
<xi:include href="d3d8/d3d8.rbuild" />
|
||||
</directory>
|
||||
<directory name="d3d9">
|
||||
<xi:include href="d3d9/d3d9.rbuild" />
|
||||
</directory>
|
||||
|
||||
Reference in New Issue
Block a user