Module: wine Branch: master Commit: f54d6c366d1e84255b5948d67ed14c063e2543bb URL: http://source.winehq.org/git/wine.git/?a=commit;h=f54d6c366d1e84255b5948d67e...
Author: Stefan Dösinger stefan@codeweavers.com Date: Sat Sep 12 14:13:58 2009 +0200
d3d8: Make Direct3DCreate8 hookable.
---
dlls/d3d8/d3d8_main.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/d3d8/d3d8_main.c b/dlls/d3d8/d3d8_main.c index 6300371..e5f44e7 100644 --- a/dlls/d3d8/d3d8_main.c +++ b/dlls/d3d8/d3d8_main.c @@ -35,7 +35,7 @@ void WINAPI DebugSetMute(void) { /* nothing to do */ }
-IDirect3D8* WINAPI Direct3DCreate8(UINT SDKVersion) { +IDirect3D8* WINAPI DECLSPEC_HOTPATCH Direct3DCreate8(UINT SDKVersion) { IDirect3D8Impl* object; TRACE("SDKVersion = %x\n", SDKVersion);