Module: wine Branch: master Commit: ff10151a02a4bf2c0adb13f1b0e0437922ee05df URL: http://source.winehq.org/git/wine.git/?a=commit;h=ff10151a02a4bf2c0adb13f1b0...
Author: Henri Verbeet hverbeet@codeweavers.com Date: Tue Dec 4 22:10:08 2012 +0100
d3dx9: Fix the LPLPD3DXFILE typedef.
---
include/d3dx9xof.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/d3dx9xof.h b/include/d3dx9xof.h index 4bcb769..785bc1c 100644 --- a/include/d3dx9xof.h +++ b/include/d3dx9xof.h @@ -60,7 +60,7 @@ DEFINE_GUID(IID_ID3DXFileEnumObject, 0xcef08cfc, 0x7b4f, 0x4429, 0x96, 0x24, 0x2 DEFINE_GUID(IID_ID3DXFileData, 0xcef08cfd, 0x7b4f, 0x4429, 0x96, 0x24, 0x2a, 0x69, 0x0a, 0x93, 0x32, 0x01); #endif /* _NO_COM */
-typedef interface ID3DXFile *LPD3DXFILE, *LPLPD3DXFILE; +typedef interface ID3DXFile *LPD3DXFILE, **LPLPD3DXFILE; typedef interface ID3DXFileSaveObject *LPD3DXFILESAVEOBJECT, **LPLPD3DXFILESAVEOBJECT; typedef interface ID3DXFileSaveData *LPD3DXFILESAVEDATA, **LPLPD3DXFILESAVEDATA; typedef interface ID3DXFileEnumObject *LPD3DXFILEENUMOBJECT, **LPLPD3DXFILEENUMOBJECT;