mshtml: Added IHTMLElement2::get_currentStyle implementation.
[wine] / dlls / d3dxof / d3dxof_private.h
1 /*
2  *      DirectX File private interfaces (D3DXOF.DLL)
3  *
4  * Copyright 2004, 2008 Christian Costa
5  *
6  * This file contains the (internal) driver registration functions,
7  * driver enumeration APIs and DirectDraw creation functions.
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22  */
23
24 #ifndef __D3DXOF_PRIVATE_INCLUDED__
25 #define __D3DXOF_PRIVATE_INCLUDED__
26
27 #include <stdarg.h>
28
29 #include "windef.h"
30 #include "winbase.h"
31 #include "wtypes.h"
32 #include "wingdi.h"
33 #include "winuser.h"
34 #include "dxfile.h"
35
36 #define MAX_NAME_LEN 32
37 #define MAX_ARRAY_DIM 1
38 #define MAX_MEMBERS 50
39 #define MAX_CHILDS 10
40 #define MAX_TEMPLATES 200
41 #define MAX_OBJECTS 200
42 #define MAX_SUBOBJECTS 20
43
44 typedef struct {
45     DWORD type;
46     LONG idx_template;
47     char name[MAX_NAME_LEN];
48     ULONG nb_dims;
49     BOOL  dim_fixed[MAX_ARRAY_DIM]; /* fixed or variable */
50     ULONG dim_value[MAX_ARRAY_DIM]; /* fixed value or member index */
51 } member;
52
53 typedef struct {
54     char name[MAX_NAME_LEN];
55     GUID class_id;
56     BOOL open;
57     ULONG nb_childs;
58     char childs[MAX_CHILDS][MAX_NAME_LEN];
59     ULONG nb_members;
60     member members[MAX_MEMBERS];
61 } xtemplate;
62
63 typedef struct {
64     char name[MAX_NAME_LEN];
65     LPBYTE start;
66     ULONG size;
67 } xobject_member;
68
69 struct _xobject {
70    struct _xobject* ptarget;
71    char name[MAX_NAME_LEN];
72    GUID class_id;
73    GUID type;
74    LPBYTE pdata;
75    DWORD size;
76    ULONG nb_members;
77    xobject_member members[MAX_MEMBERS];
78    ULONG nb_childs;
79    struct _xobject * childs[MAX_CHILDS];
80 };
81
82 typedef struct _xobject xobject;
83
84 typedef struct {
85     IDirectXFile lpVtbl;
86     LONG ref;
87     ULONG nb_xtemplates;
88     xtemplate xtemplates[MAX_TEMPLATES];
89 } IDirectXFileImpl;
90
91 typedef struct {
92     IDirectXFileBinary lpVtbl;
93     LONG ref;
94 } IDirectXFileBinaryImpl;
95
96 typedef struct {
97     IDirectXFileData lpVtbl;
98     LONG ref;
99     xobject* pobj;
100     int cur_enum_object;
101 } IDirectXFileDataImpl;
102
103 typedef struct {
104     IDirectXFileDataReference lpVtbl;
105     LONG ref;
106     xobject* ptarget;
107 } IDirectXFileDataReferenceImpl;
108
109 typedef struct {
110     IDirectXFileObject lpVtbl;
111     LONG ref;
112 } IDirectXFileObjectImpl;
113
114 typedef struct {
115   /* Buffer to parse */
116   LPBYTE buffer;
117   DWORD rem_bytes;
118   /* Misc info */
119   WORD current_token;
120   BOOL token_present;
121   BOOL txt;
122   ULONG cur_subobject;
123   LPBYTE cur_pdata;
124   BYTE value[100];
125   xobject* pxo_globals;
126   ULONG nb_pxo_globals;
127   xobject* pxo_tab;
128   IDirectXFileImpl* pdxf;
129   xobject* pxo;
130   xtemplate* pxt[MAX_SUBOBJECTS];
131   ULONG level;
132 } parse_buffer;
133
134 typedef struct {
135     IDirectXFileEnumObject lpVtbl;
136     LONG ref;
137     DXFILELOADOPTIONS source;
138     HANDLE hFile;
139     parse_buffer buf;
140     IDirectXFileImpl* pDirectXFile;
141     ULONG nb_xobjects;
142     xobject xobjects[MAX_OBJECTS][MAX_SUBOBJECTS];
143 } IDirectXFileEnumObjectImpl;
144
145 typedef struct {
146     IDirectXFileSaveObject lpVtbl;
147     LONG ref;
148 } IDirectXFileSaveObjectImpl;
149
150 HRESULT IDirectXFileImpl_Create(IUnknown *pUnkOuter, LPVOID *ppObj);
151 HRESULT IDirectXFileBinaryImpl_Create(IDirectXFileBinaryImpl** ppObj);
152 HRESULT IDirectXFileDataImpl_Create(IDirectXFileDataImpl** ppObj);
153 HRESULT IDirectXFileDataReferenceImpl_Create(IDirectXFileDataReferenceImpl** ppObj);
154 HRESULT IDirectXFileEnumObjectImpl_Create(IDirectXFileEnumObjectImpl** ppObj);
155 HRESULT IDirectXFileFileObjectImpl_Create(IDirectXFileObjectImpl** ppObj);
156 HRESULT IDirectXFileFileSaveObjectImpl_Create(IDirectXFileSaveObjectImpl** ppObj);
157
158 #endif /* __D3DXOF_PRIVATE_INCLUDED__ */