include: Add missing definitions for LPDIRECT3DRM2 and LPDIRECT3DRM3 (try 2)

Vijay Kiran Kamuju infyquest at gmail.com
Wed Nov 3 16:25:01 CDT 2010


ChangeLog
-----------------
include: Add missing definitions for LPDIRECT3DRM2 and LPDIRECT3DRM3 (try 2
- fix a build failure)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-patches/attachments/20101103/0db37043/attachment.htm>
-------------- next part --------------
From 2cc231344dc097b9f27e8495e7ebfb9dd3ecad10 Mon Sep 17 00:00:00 2001
From: Vijay Kiran Kamuju <infyquest at gmail.com>
Date: Wed, 3 Nov 2010 16:02:33 -0400
Subject: [PATCH 3/3] include: Add missing definitions for LPDIRECT3DRM2 and LPDIRECT3DRM3

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

diff --git a/include/d3drm.h b/include/d3drm.h
index 54beaab..4a77a62 100644
--- a/include/d3drm.h
+++ b/include/d3drm.h
@@ -22,7 +22,7 @@
 
 #include <ddraw.h>
 
-typedef struct IDirect3DRM *LPDIRECT3DRM;
+typedef struct IDirect3DRM  *LPDIRECT3DRM,  **LPLPDIRECT3DRM;
 
 #include <d3drmobj.h>
 
@@ -35,6 +35,10 @@ DEFINE_GUID(IID_IDirect3DRM,                0x2bc49361, 0x8327, 0x11cf, 0xac, 0x
 DEFINE_GUID(IID_IDirect3DRM2,               0x4516ecc8, 0x8f20, 0x11d0, 0x9b, 0x6d, 0x00, 0x00, 0xc0, 0x78, 0x1b, 0xc3);
 DEFINE_GUID(IID_IDirect3DRM3,               0x4516ec83, 0x8f20, 0x11d0, 0x9b, 0x6d, 0x00, 0x00, 0xc0, 0x78, 0x1b, 0xc3);
 
+typedef struct IDirect3DRM2 *LPDIRECT3DRM2, **LPLPDIRECT3DRM2;
+typedef struct IDirect3DRM3 *LPDIRECT3DRM3, **LPLPDIRECT3DRM3;
+
 HRESULT WINAPI Direct3DRMCreate(LPDIRECT3DRM* ppDirect3DRM);
 
 /*****************************************************************************
-- 
1.7.1


More information about the wine-patches mailing list