Raphael Junqueira | e31ae92 | 2002-12-17 01:15:15 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2002 Raphael Junqueira |
| 3 | * |
| 4 | * This library is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU Lesser General Public |
| 6 | * License as published by the Free Software Foundation; either |
| 7 | * version 2.1 of the License, or (at your option) any later version. |
| 8 | * |
| 9 | * This library is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 | * Lesser General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU Lesser General Public |
| 15 | * License along with this library; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 17 | */ |
| 18 | |
| 19 | #ifndef __WINE_D3DX8CORE_H |
| 20 | #define __WINE_D3DX8CORE_H |
| 21 | |
Dimitrie O. Paun | 53f9c21 | 2003-08-28 21:43:34 +0000 | [diff] [blame] | 22 | #include <objbase.h> |
Raphael Junqueira | e31ae92 | 2002-12-17 01:15:15 +0000 | [diff] [blame] | 23 | |
Dimitrie O. Paun | 53f9c21 | 2003-08-28 21:43:34 +0000 | [diff] [blame] | 24 | #include <d3d8.h> |
| 25 | #include <d3d8types.h> |
| 26 | #include <d3d8caps.h> |
Raphael Junqueira | e31ae92 | 2002-12-17 01:15:15 +0000 | [diff] [blame] | 27 | |
| 28 | /***************************************************************************** |
| 29 | * #defines and error codes |
| 30 | */ |
| 31 | #define D3DXASM_DEBUG 1 |
| 32 | #define D3DXASM_SKIPVALIDATION 2 |
| 33 | |
| 34 | #define _FACD3D 0x876 |
| 35 | #define MAKE_D3DXHRESULT( code ) MAKE_HRESULT( 1, _FACD3D, code ) |
| 36 | |
| 37 | /* |
| 38 | * Direct3D Errors |
| 39 | */ |
| 40 | #define D3DXERR_CANNOTATTRSORT MAKE_D3DXHRESULT(2158) |
| 41 | #define D3DXERR_CANNOTMODIFYINDEXBUFFER MAKE_D3DXHRESULT(2159) |
| 42 | #define D3DXERR_INVALIDMESH MAKE_D3DXHRESULT(2160) |
| 43 | #define D3DXERR_SKINNINGNOTSUPPORTED MAKE_D3DXHRESULT(2161) |
| 44 | #define D3DXERR_TOOMANYINFLUENCES MAKE_D3DXHRESULT(2162) |
| 45 | #define D3DXERR_INVALIDDATA MAKE_D3DXHRESULT(2163) |
| 46 | |
| 47 | /***************************************************************************** |
| 48 | * Predeclare the interfaces |
| 49 | */ |
| 50 | DEFINE_GUID(IID_ID3DXBuffer, 0x1,0x1,0x4,0xB0,0xCF,0x98,0xFE,0xFD,0xFF,0x95,0x12);/* FIXME */ |
Alexandre Julliard | b8d3075 | 2005-07-26 18:32:53 +0000 | [diff] [blame] | 51 | typedef struct ID3DXBuffer *LPD3DXBUFFER; |
Raphael Junqueira | e31ae92 | 2002-12-17 01:15:15 +0000 | [diff] [blame] | 52 | DEFINE_GUID(IID_ID3DXFont, 0x1,0x1,0x4,0xB0,0xCF,0x98,0xFE,0xFD,0xFF,0x95,0x13);/* FIXME */ |
Alexandre Julliard | b8d3075 | 2005-07-26 18:32:53 +0000 | [diff] [blame] | 53 | typedef struct ID3DXFont *LPD3DXFONT; |
Raphael Junqueira | e31ae92 | 2002-12-17 01:15:15 +0000 | [diff] [blame] | 54 | |
| 55 | /***************************************************************************** |
| 56 | * ID3DXBuffer interface |
| 57 | */ |
Alexandre Julliard | f00c46f | 2003-04-10 00:19:24 +0000 | [diff] [blame] | 58 | #define INTERFACE ID3DXBuffer |
Alexandre Julliard | 5d0160e | 2004-10-05 04:38:15 +0000 | [diff] [blame] | 59 | DECLARE_INTERFACE_(ID3DXBuffer,IUnknown) |
| 60 | { |
| 61 | /*** IUnknown methods ***/ |
| 62 | STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE; |
| 63 | STDMETHOD_(ULONG,AddRef)(THIS) PURE; |
| 64 | STDMETHOD_(ULONG,Release)(THIS) PURE; |
| 65 | /*** ID3DXBuffer methods ***/ |
| 66 | STDMETHOD_(LPVOID,GetBufferPointer)(THIS) PURE; |
Alexandre Julliard | f00c46f | 2003-04-10 00:19:24 +0000 | [diff] [blame] | 67 | STDMETHOD_(DWORD,GetBufferSize)(THIS) PURE; |
Alexandre Julliard | 5d0160e | 2004-10-05 04:38:15 +0000 | [diff] [blame] | 68 | }; |
Alexandre Julliard | f00c46f | 2003-04-10 00:19:24 +0000 | [diff] [blame] | 69 | #undef INTERFACE |
Raphael Junqueira | e31ae92 | 2002-12-17 01:15:15 +0000 | [diff] [blame] | 70 | |
Francois Gouget | 52ecbf7 | 2004-10-04 19:35:40 +0000 | [diff] [blame] | 71 | #if !defined(__cplusplus) || defined(CINTERFACE) |
Raphael Junqueira | e31ae92 | 2002-12-17 01:15:15 +0000 | [diff] [blame] | 72 | /*** IUnknown methods ***/ |
Alexandre Julliard | 5537911 | 2003-04-10 21:13:58 +0000 | [diff] [blame] | 73 | #define ID3DXBuffer_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) |
| 74 | #define ID3DXBuffer_AddRef(p) (p)->lpVtbl->AddRef(p) |
| 75 | #define ID3DXBuffer_Release(p) (p)->lpVtbl->Release(p) |
Raphael Junqueira | e31ae92 | 2002-12-17 01:15:15 +0000 | [diff] [blame] | 76 | /*** ID3DXBuffer methods ***/ |
Alexandre Julliard | 5537911 | 2003-04-10 21:13:58 +0000 | [diff] [blame] | 77 | #define ID3DXBuffer_GetBufferPointer(p) (p)->lpVtbl->GetBufferPointer(p) |
| 78 | #define ID3DXBuffer_GetBufferSize(p) (p)->lpVtbl->GetBufferSize(p) |
| 79 | #endif |
Raphael Junqueira | e31ae92 | 2002-12-17 01:15:15 +0000 | [diff] [blame] | 80 | |
| 81 | /***************************************************************************** |
| 82 | * ID3DXFont interface |
| 83 | */ |
Alexandre Julliard | f00c46f | 2003-04-10 00:19:24 +0000 | [diff] [blame] | 84 | #define INTERFACE ID3DXFont |
Alexandre Julliard | 5d0160e | 2004-10-05 04:38:15 +0000 | [diff] [blame] | 85 | DECLARE_INTERFACE_(ID3DXFont,IUnknown) |
| 86 | { |
| 87 | /*** IUnknown methods ***/ |
| 88 | STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) PURE; |
| 89 | STDMETHOD_(ULONG,AddRef)(THIS) PURE; |
| 90 | STDMETHOD_(ULONG,Release)(THIS) PURE; |
| 91 | /*** ID3DXFont methods ***/ |
| 92 | STDMETHOD(Begin)(THIS) PURE; |
| 93 | STDMETHOD(DrawTextA)(THIS) PURE; |
Alexandre Julliard | f00c46f | 2003-04-10 00:19:24 +0000 | [diff] [blame] | 94 | STDMETHOD(End)(THIS) PURE; |
Alexandre Julliard | 5d0160e | 2004-10-05 04:38:15 +0000 | [diff] [blame] | 95 | }; |
Alexandre Julliard | f00c46f | 2003-04-10 00:19:24 +0000 | [diff] [blame] | 96 | #undef INTERFACE |
Raphael Junqueira | e31ae92 | 2002-12-17 01:15:15 +0000 | [diff] [blame] | 97 | |
Francois Gouget | 52ecbf7 | 2004-10-04 19:35:40 +0000 | [diff] [blame] | 98 | #if !defined(__cplusplus) || defined(CINTERFACE) |
Raphael Junqueira | e31ae92 | 2002-12-17 01:15:15 +0000 | [diff] [blame] | 99 | /*** IUnknown methods ***/ |
Alexandre Julliard | 5537911 | 2003-04-10 21:13:58 +0000 | [diff] [blame] | 100 | #define ID3DXFont_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b) |
| 101 | #define ID3DXFont_AddRef(p) (p)->lpVtbl->AddRef(p) |
| 102 | #define ID3DXFont_Release(p) (p)->lpVtbl->Release(p) |
Raphael Junqueira | e31ae92 | 2002-12-17 01:15:15 +0000 | [diff] [blame] | 103 | /*** ID3DXFont methods ***/ |
Alexandre Julliard | 5537911 | 2003-04-10 21:13:58 +0000 | [diff] [blame] | 104 | #define ID3DXFont_Begin(p) (p)->lpVtbl->Begin(p) |
| 105 | #define ID3DXFont_DrawTextA(p,a,b,c,d,e)(p)->lpVtbl->DrawText(p,a,b,c,d,e) |
| 106 | #define ID3DXFont_End(p) (p)->lpVtbl->End(p) |
| 107 | #endif |
Raphael Junqueira | e31ae92 | 2002-12-17 01:15:15 +0000 | [diff] [blame] | 108 | |
| 109 | /************************************************************************************* |
| 110 | * Define entrypoints |
| 111 | */ |
Patrik Stridvall | 46304a7 | 2003-01-02 19:28:09 +0000 | [diff] [blame] | 112 | HRESULT WINAPI D3DXCreateBuffer(DWORD NumBytes, LPD3DXBUFFER* ppBuffer); |
| 113 | HRESULT WINAPI D3DXCreateFont(LPDIRECT3DDEVICE8 pDevice, HFONT hFont, LPD3DXFONT* ppFont); |
| 114 | UINT WINAPI D3DXGetFVFVertexSize(DWORD FVF); |
| 115 | HRESULT WINAPI D3DXAssembleShader(LPCVOID pSrcData, UINT SrcDataLen, DWORD Flags, |
Raphael Junqueira | e31ae92 | 2002-12-17 01:15:15 +0000 | [diff] [blame] | 116 | LPD3DXBUFFER* ppConstants, |
| 117 | LPD3DXBUFFER* ppCompiledShader, |
| 118 | LPD3DXBUFFER* ppCompilationErrors); |
Patrik Stridvall | 46304a7 | 2003-01-02 19:28:09 +0000 | [diff] [blame] | 119 | HRESULT WINAPI D3DXAssembleShaderFromFileA(LPSTR pSrcFile, DWORD Flags, |
Raphael Junqueira | e31ae92 | 2002-12-17 01:15:15 +0000 | [diff] [blame] | 120 | LPD3DXBUFFER* ppConstants, |
| 121 | LPD3DXBUFFER* ppCompiledShader, |
| 122 | LPD3DXBUFFER* ppCompilationErrors); |
Patrik Stridvall | 46304a7 | 2003-01-02 19:28:09 +0000 | [diff] [blame] | 123 | HRESULT WINAPI D3DXAssembleShaderFromFileW(LPSTR pSrcFile, DWORD Flags, |
Raphael Junqueira | e31ae92 | 2002-12-17 01:15:15 +0000 | [diff] [blame] | 124 | LPD3DXBUFFER* ppConstants, |
| 125 | LPD3DXBUFFER* ppCompiledShader, |
| 126 | LPD3DXBUFFER* ppCompilationErrors); |
| 127 | |
| 128 | #endif /* __WINE_D3DX8CORE_H */ |