mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
- add a stub for D3DParseUnknownCommand
svn path=/trunk/; revision=40374
This commit is contained in:
parent
d8ae8a179f
commit
0ae0d6a95c
3 changed files with 10 additions and 0 deletions
|
@ -30,6 +30,7 @@
|
|||
<file>palette.c</file>
|
||||
<file>parent.c</file>
|
||||
<file>regsvr.c</file>
|
||||
<file>stubs.c</file>
|
||||
<file>surface.c</file>
|
||||
<file>surface_thunks.c</file>
|
||||
<file>texture.c</file>
|
||||
|
|
|
@ -26,3 +26,4 @@
|
|||
@ stub VidMemFree
|
||||
@ stub VidMemInit
|
||||
@ stub VidMemLargestFree
|
||||
@ stdcall D3DParseUnknownCommand(ptr ptr)
|
||||
|
|
8
reactos/dll/directx/wine/ddraw/stubs.c
Normal file
8
reactos/dll/directx/wine/ddraw/stubs.c
Normal file
|
@ -0,0 +1,8 @@
|
|||
#include "ddraw_private.h"
|
||||
|
||||
HRESULT WINAPI
|
||||
D3DParseUnknownCommand( LPVOID lpCmd,
|
||||
LPVOID *lpRetCmd)
|
||||
{
|
||||
return DD_OK;
|
||||
}
|
Loading…
Reference in a new issue