1 | /*
|
---|
2 | * Copyright 2011 Dylan Smith
|
---|
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
---|
17 | */
|
---|
18 |
|
---|
19 | #ifndef __WINE_D3DX9XOF_H
|
---|
20 | #define __WINE_D3DX9XOF_H
|
---|
21 |
|
---|
22 | #include "d3dx9.h"
|
---|
23 |
|
---|
24 | #ifdef __cplusplus
|
---|
25 | extern "C" {
|
---|
26 | #endif
|
---|
27 |
|
---|
28 | typedef DWORD D3DXF_FILEFORMAT;
|
---|
29 | #define D3DXF_FILEFORMAT_BINARY 0
|
---|
30 | #define D3DXF_FILEFORMAT_TEXT 1
|
---|
31 | #define D3DXF_FILEFORMAT_COMPRESSED 2
|
---|
32 |
|
---|
33 | typedef DWORD D3DXF_FILESAVEOPTIONS;
|
---|
34 | #define D3DXF_FILESAVE_TOFILE 0x00
|
---|
35 | #define D3DXF_FILESAVE_TOWFILE 0x01
|
---|
36 |
|
---|
37 | typedef DWORD D3DXF_FILELOADOPTIONS;
|
---|
38 | #define D3DXF_FILELOAD_FROMFILE 0x00
|
---|
39 | #define D3DXF_FILELOAD_FROMWFILE 0x01
|
---|
40 | #define D3DXF_FILELOAD_FROMRESOURCE 0x02
|
---|
41 | #define D3DXF_FILELOAD_FROMMEMORY 0x03
|
---|
42 |
|
---|
43 | typedef struct _D3DXF_FILELOADRESOURCE
|
---|
44 | {
|
---|
45 | HMODULE hModule;
|
---|
46 | const char *lpName;
|
---|
47 | const char *lpType;
|
---|
48 | } D3DXF_FILELOADRESOURCE;
|
---|
49 |
|
---|
50 | typedef struct _D3DXF_FILELOADMEMORY
|
---|
51 | {
|
---|
52 | void *lpMemory;
|
---|
53 | SIZE_T dSize;
|
---|
54 | } D3DXF_FILELOADMEMORY;
|
---|
55 |
|
---|
56 |
|
---|
57 | #ifndef _NO_COM
|
---|
58 | DEFINE_GUID(IID_ID3DXFile, 0xcef08cf9, 0x7b4f, 0x4429, 0x96, 0x24, 0x2a, 0x69, 0x0a, 0x93, 0x32, 0x01);
|
---|
59 | DEFINE_GUID(IID_ID3DXFileSaveObject, 0xcef08cfa, 0x7b4f, 0x4429, 0x96, 0x24, 0x2a, 0x69, 0x0a, 0x93, 0x32, 0x01);
|
---|
60 | DEFINE_GUID(IID_ID3DXFileSaveData, 0xcef08cfb, 0x7b4f, 0x4429, 0x96, 0x24, 0x2a, 0x69, 0x0a, 0x93, 0x32, 0x01);
|
---|
61 | DEFINE_GUID(IID_ID3DXFileEnumObject, 0xcef08cfc, 0x7b4f, 0x4429, 0x96, 0x24, 0x2a, 0x69, 0x0a, 0x93, 0x32, 0x01);
|
---|
62 | DEFINE_GUID(IID_ID3DXFileData, 0xcef08cfd, 0x7b4f, 0x4429, 0x96, 0x24, 0x2a, 0x69, 0x0a, 0x93, 0x32, 0x01);
|
---|
63 | #endif /* _NO_COM */
|
---|
64 |
|
---|
65 | typedef interface ID3DXFile *LPD3DXFILE, **LPLPD3DXFILE;
|
---|
66 | typedef interface ID3DXFileSaveObject *LPD3DXFILESAVEOBJECT, **LPLPD3DXFILESAVEOBJECT;
|
---|
67 | typedef interface ID3DXFileSaveData *LPD3DXFILESAVEDATA, **LPLPD3DXFILESAVEDATA;
|
---|
68 | typedef interface ID3DXFileEnumObject *LPD3DXFILEENUMOBJECT, **LPLPD3DXFILEENUMOBJECT;
|
---|
69 | typedef interface ID3DXFileData *LPD3DXFILEDATA, **LPLPD3DXFILEDATA;
|
---|
70 |
|
---|
71 | STDAPI D3DXFileCreate(struct ID3DXFile **file);
|
---|
72 |
|
---|
73 | #define INTERFACE ID3DXFile
|
---|
74 | DECLARE_INTERFACE_IID_(ID3DXFile,IUnknown,"cef08cf9-7b4f-4429-9624-2a690a933201")
|
---|
75 | {
|
---|
76 | /*** IUnknown methods ***/
|
---|
77 | STDMETHOD(QueryInterface)(THIS_ REFIID iid, void **out) PURE;
|
---|
78 | STDMETHOD_(ULONG,AddRef)(THIS) PURE;
|
---|
79 | STDMETHOD_(ULONG,Release)(THIS) PURE;
|
---|
80 | /*** ID3DXFile methods ***/
|
---|
81 | STDMETHOD(CreateEnumObject)(THIS_ const void *src, D3DXF_FILELOADOPTIONS type,
|
---|
82 | struct ID3DXFileEnumObject **enum_obj) PURE;
|
---|
83 | STDMETHOD(CreateSaveObject)(THIS_ const void *data, D3DXF_FILESAVEOPTIONS flags,
|
---|
84 | D3DXF_FILEFORMAT format, struct ID3DXFileSaveObject **save_obj) PURE;
|
---|
85 | STDMETHOD(RegisterTemplates)(THIS_ const void *data, SIZE_T data_size) PURE;
|
---|
86 | STDMETHOD(RegisterEnumTemplates)(THIS_ struct ID3DXFileEnumObject *enum_obj) PURE;
|
---|
87 | };
|
---|
88 | #undef INTERFACE
|
---|
89 |
|
---|
90 | #define INTERFACE ID3DXFileSaveObject
|
---|
91 | DECLARE_INTERFACE_IID_(ID3DXFileSaveObject,IUnknown,"cef08cfa-7b4f-4429-9624-2a690a933201")
|
---|
92 | {
|
---|
93 | /*** IUnknown methods ***/
|
---|
94 | STDMETHOD(QueryInterface)(THIS_ REFIID iid, void **out) PURE;
|
---|
95 | STDMETHOD_(ULONG,AddRef)(THIS) PURE;
|
---|
96 | STDMETHOD_(ULONG,Release)(THIS) PURE;
|
---|
97 | /*** ID3DXFileSaveObject methods ***/
|
---|
98 | STDMETHOD(GetFile)(THIS_ ID3DXFile **file) PURE;
|
---|
99 | STDMETHOD(AddDataObject)(THIS_ REFGUID template_guid, const char *name, const GUID *guid,
|
---|
100 | SIZE_T data_size, const void *data, struct ID3DXFileSaveData **obj) PURE;
|
---|
101 | STDMETHOD(Save)(THIS) PURE;
|
---|
102 | };
|
---|
103 | #undef INTERFACE
|
---|
104 |
|
---|
105 | #define INTERFACE ID3DXFileSaveData
|
---|
106 | DECLARE_INTERFACE_IID_(ID3DXFileSaveData,IUnknown,"cef08cfb-7b4f-4429-9624-2a690a933201")
|
---|
107 | {
|
---|
108 | /*** IUnknown methods ***/
|
---|
109 | STDMETHOD(QueryInterface)(THIS_ REFIID iid, void **out) PURE;
|
---|
110 | STDMETHOD_(ULONG,AddRef)(THIS) PURE;
|
---|
111 | STDMETHOD_(ULONG,Release)(THIS) PURE;
|
---|
112 | /*** ID3DXFileSaveObject methods ***/
|
---|
113 | STDMETHOD(GetSave)(THIS_ ID3DXFileSaveObject **save_obj) PURE;
|
---|
114 | STDMETHOD(GetName)(THIS_ char *name, SIZE_T *size) PURE;
|
---|
115 | STDMETHOD(GetId)(THIS_ LPGUID) PURE;
|
---|
116 | STDMETHOD(GetType)(THIS_ GUID*) PURE;
|
---|
117 | STDMETHOD(AddDataObject)(THIS_ REFGUID template_guid, const char *name, const GUID *guid,
|
---|
118 | SIZE_T data_size, const void *data, ID3DXFileSaveData **obj) PURE;
|
---|
119 | STDMETHOD(AddDataReference)(THIS_ const char *name, const GUID *id) PURE;
|
---|
120 | };
|
---|
121 | #undef INTERFACE
|
---|
122 |
|
---|
123 |
|
---|
124 | #define INTERFACE ID3DXFileEnumObject
|
---|
125 | DECLARE_INTERFACE_IID_(ID3DXFileEnumObject,IUnknown,"cef08cfc-7b4f-4429-9624-2a690a933201")
|
---|
126 | {
|
---|
127 | /*** IUnknown methods ***/
|
---|
128 | STDMETHOD(QueryInterface)(THIS_ REFIID iid, void **out) PURE;
|
---|
129 | STDMETHOD_(ULONG,AddRef)(THIS) PURE;
|
---|
130 | STDMETHOD_(ULONG,Release)(THIS) PURE;
|
---|
131 | /*** ID3DXFileEnumObject methods ***/
|
---|
132 | STDMETHOD(GetFile)(THIS_ ID3DXFile **file) PURE;
|
---|
133 | STDMETHOD(GetChildren)(THIS_ SIZE_T*) PURE;
|
---|
134 | STDMETHOD(GetChild)(THIS_ SIZE_T id, struct ID3DXFileData **child) PURE;
|
---|
135 | STDMETHOD(GetDataObjectById)(THIS_ REFGUID guid, struct ID3DXFileData **obj) PURE;
|
---|
136 | STDMETHOD(GetDataObjectByName)(THIS_ const char *name, struct ID3DXFileData **obj) PURE;
|
---|
137 | };
|
---|
138 | #undef INTERFACE
|
---|
139 |
|
---|
140 | #define INTERFACE ID3DXFileData
|
---|
141 | DECLARE_INTERFACE_IID_(ID3DXFileData,IUnknown,"cef08cfd-7b4f-4429-9624-2a690a933201")
|
---|
142 | {
|
---|
143 | /*** IUnknown methods ***/
|
---|
144 | STDMETHOD(QueryInterface)(THIS_ REFIID iid, void **out) PURE;
|
---|
145 | STDMETHOD_(ULONG,AddRef)(THIS) PURE;
|
---|
146 | STDMETHOD_(ULONG,Release)(THIS) PURE;
|
---|
147 | /*** ID3DXFileData methods ***/
|
---|
148 | STDMETHOD(GetEnum)(THIS_ ID3DXFileEnumObject **enum_obj) PURE;
|
---|
149 | STDMETHOD(GetName)(THIS_ char *name, SIZE_T *size) PURE;
|
---|
150 | STDMETHOD(GetId)(THIS_ LPGUID) PURE;
|
---|
151 | STDMETHOD(Lock)(THIS_ SIZE_T *data_size, const void **data) PURE;
|
---|
152 | STDMETHOD(Unlock)(THIS) PURE;
|
---|
153 | STDMETHOD(GetType)(THIS_ GUID*) PURE;
|
---|
154 | STDMETHOD_(BOOL,IsReference)(THIS) PURE;
|
---|
155 | STDMETHOD(GetChildren)(THIS_ SIZE_T*) PURE;
|
---|
156 | STDMETHOD(GetChild)(THIS_ SIZE_T id, ID3DXFileData **child) PURE;
|
---|
157 | };
|
---|
158 | #undef INTERFACE
|
---|
159 |
|
---|
160 | /* D3DX File errors */
|
---|
161 | #define _FACD3DXF 0x876
|
---|
162 |
|
---|
163 | #define D3DXFERR_BADOBJECT MAKE_HRESULT(1,_FACD3DXF,900)
|
---|
164 | #define D3DXFERR_BADVALUE MAKE_HRESULT(1,_FACD3DXF,901)
|
---|
165 | #define D3DXFERR_BADTYPE MAKE_HRESULT(1,_FACD3DXF,902)
|
---|
166 | #define D3DXFERR_NOTFOUND MAKE_HRESULT(1,_FACD3DXF,903)
|
---|
167 | #define D3DXFERR_NOTDONEYET MAKE_HRESULT(1,_FACD3DXF,904)
|
---|
168 | #define D3DXFERR_FILENOTFOUND MAKE_HRESULT(1,_FACD3DXF,905)
|
---|
169 | #define D3DXFERR_RESOURCENOTFOUND MAKE_HRESULT(1,_FACD3DXF,906)
|
---|
170 | #define D3DXFERR_BADRESOURCE MAKE_HRESULT(1,_FACD3DXF,907)
|
---|
171 | #define D3DXFERR_BADFILETYPE MAKE_HRESULT(1,_FACD3DXF,908)
|
---|
172 | #define D3DXFERR_BADFILEVERSION MAKE_HRESULT(1,_FACD3DXF,909)
|
---|
173 | #define D3DXFERR_BADFILEFLOATSIZE MAKE_HRESULT(1,_FACD3DXF,910)
|
---|
174 | #define D3DXFERR_BADFILE MAKE_HRESULT(1,_FACD3DXF,911)
|
---|
175 | #define D3DXFERR_PARSEERROR MAKE_HRESULT(1,_FACD3DXF,912)
|
---|
176 | #define D3DXFERR_BADARRAYSIZE MAKE_HRESULT(1,_FACD3DXF,913)
|
---|
177 | #define D3DXFERR_BADDATAREFERENCE MAKE_HRESULT(1,_FACD3DXF,914)
|
---|
178 | #define D3DXFERR_NOMOREOBJECTS MAKE_HRESULT(1,_FACD3DXF,915)
|
---|
179 | #define D3DXFERR_NOMOREDATA MAKE_HRESULT(1,_FACD3DXF,916)
|
---|
180 | #define D3DXFERR_BADCACHEFILE MAKE_HRESULT(1,_FACD3DXF,917)
|
---|
181 |
|
---|
182 | #ifdef __cplusplus
|
---|
183 | }
|
---|
184 | #endif
|
---|
185 |
|
---|
186 | #endif /* __WINE_D3DX9XOF_H */
|
---|