[d3drm] fix signature of LoadTextureFromResource of IDirect3DRM2 interface

Vijay Kiran Kamuju infyquest at gmail.com
Sun Oct 31 14:36:04 CDT 2010


Changelog
---------------
fix signature of LoadTextureFromResource of IDirect3DRM2 interface
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-patches/attachments/20101031/12f3a2a0/attachment.htm>
-------------- next part --------------
From 7a6546aa17e701f0dd4b63292cf9c4ccea004e92 Mon Sep 17 00:00:00 2001
From: Vijay Kiran Kamuju <infyquest at gmail.com>
Date: Sun, 31 Oct 2010 15:25:09 -0400
Subject: [PATCH] [d3drm] fix signature of LoadTextureFromResource of IDirect3DRM2 interface

---
 include/d3drm.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/d3drm.h b/include/d3drm.h
index 240014e..1f84914 100644
--- a/include/d3drm.h
+++ b/include/d3drm.h
@@ -294,7 +294,7 @@ DECLARE_INTERFACE_(IDirect3DRM2,IUnknown)
 #define IDirect3DRM2_CreateWrap(p,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p) (p)->CreateWrap(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p)
 #define IDirect3DRM2_CreateUserVisual(p,a,b,c)                     (p)->CreateUserVisual(a,b,c)
 #define IDirect3DRM2_LoadTexture(p,a,b)                            (p)->LoadTexture(a,b)
-#define IDirect3DRM2_LoadTextureFromResource(p,a,b)                (p)->LoadTextureFromResource(a,b)
+#define IDirect3DRM2_LoadTextureFromResource(p,a,b,c,d)            (p)->LoadTextureFromResource(a,b,c,d)
 #define IDirect3DRM2_SetSearchPath(p,a)                            (p)->SetSearchPath(a)
 #define IDirect3DRM2_AddSearchPath(p,a)                            (p)->AddSearchPath(a)
 #define IDirect3DRM2_GetSearchPath(p,a,b)                          (p)->GetSearchPath(a,b)
-- 
1.7.1


More information about the wine-patches mailing list