~ubuntu-wine/ubuntu/lucid/wine1.2/wine1.2+winepulse

« back to all changes in this revision

Viewing changes to dlls/d3dxof/d3dxof_private.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Ritchie
  • Date: 2010-02-02 11:15:03 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20100202111503-w4ayji21ei1ginjr
Tags: 1.1.37-0ubuntu1
* New upstream release
  - A number of fixes in AVI file support.
  - Several MSXML improvements.
  - A few MSI fixes.
  - Various bug fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
typedef struct _xobject xobject;
89
89
 
90
90
typedef struct {
91
 
    IDirectXFile lpVtbl;
 
91
    const IDirectXFileVtbl *lpVtbl;
92
92
    LONG ref;
93
93
    ULONG nb_xtemplates;
94
94
    xtemplate xtemplates[MAX_TEMPLATES];
95
95
} IDirectXFileImpl;
96
96
 
97
97
typedef struct {
98
 
    IDirectXFileBinary lpVtbl;
 
98
    const IDirectXFileBinaryVtbl *lpVtbl;
99
99
    LONG ref;
100
100
} IDirectXFileBinaryImpl;
101
101
 
102
102
typedef struct {
103
 
    IDirectXFileData lpVtbl;
 
103
    const IDirectXFileDataVtbl *lpVtbl;
104
104
    LONG ref;
105
105
    xobject* pobj;
106
106
    int cur_enum_object;
110
110
} IDirectXFileDataImpl;
111
111
 
112
112
typedef struct {
113
 
    IDirectXFileDataReference lpVtbl;
 
113
    const IDirectXFileDataReferenceVtbl *lpVtbl;
114
114
    LONG ref;
115
115
    xobject* ptarget;
116
116
} IDirectXFileDataReferenceImpl;
117
117
 
118
118
typedef struct {
119
 
    IDirectXFileObject lpVtbl;
 
119
    const IDirectXFileObjectVtbl *lpVtbl;
120
120
    LONG ref;
121
121
} IDirectXFileObjectImpl;
122
122
 
144
144
} parse_buffer;
145
145
 
146
146
typedef struct {
147
 
    IDirectXFileEnumObject lpVtbl;
 
147
    const IDirectXFileEnumObjectVtbl *lpVtbl;
148
148
    LONG ref;
149
149
    DXFILELOADOPTIONS source;
150
150
    HANDLE hFile;
159
159
} IDirectXFileEnumObjectImpl;
160
160
 
161
161
typedef struct {
162
 
    IDirectXFileSaveObject lpVtbl;
 
162
    const IDirectXFileSaveObjectVtbl *lpVtbl;
163
163
    LONG ref;
164
164
} IDirectXFileSaveObjectImpl;
165
165