Remove some more -Wstrict-prototypes warnings.
[wine/dcerpc.git] / dlls / d3dxof / d3dxof_private.h
blobe3eaa75bc1bff506cd65c726a3c926549a3bc401
1 /*
2 * DirectX File private interfaces (D3DXOF.DLL)
4 * Copyright 2004 Christian Costa
6 * This file contains the (internal) driver registration functions,
7 * driver enumeration APIs and DirectDraw creation functions.
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.
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.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #ifndef __D3DXOF_PRIVATE_INCLUDED__
25 #define __D3DXOF_PRIVATE_INCLUDED__
27 #define CONST_VTABLE
29 #include <stdarg.h>
31 #include "windef.h"
32 #include "winbase.h"
33 #include "wtypes.h"
34 #include "wingdi.h"
35 #include "winuser.h"
36 #include "dxfile.h"
38 typedef struct {
39 IDirectXFile lpVtbl;
40 ULONG ref;
41 } IDirectXFileImpl;
43 typedef struct {
44 IDirectXFileBinary lpVtbl;
45 ULONG ref;
46 } IDirectXFileBinaryImpl;
48 typedef struct {
49 IDirectXFileData lpVtbl;
50 ULONG ref;
51 } IDirectXFileDataImpl;
53 typedef struct {
54 IDirectXFileDataReference lpVtbl;
55 ULONG ref;
56 } IDirectXFileDataReferenceImpl;
58 typedef struct {
59 IDirectXFileObject lpVtbl;
60 ULONG ref;
61 } IDirectXFileObjectImpl;
63 typedef struct {
64 IDirectXFileEnumObject lpVtbl;
65 ULONG ref;
66 } IDirectXFileEnumObjectImpl;
68 typedef struct {
69 IDirectXFileSaveObject lpVtbl;
70 ULONG ref;
71 } IDirectXFileSaveObjectImpl;
73 HRESULT IDirectXFileImpl_Create(IUnknown *pUnkOuter, LPVOID *ppObj);
74 HRESULT IDirectXFileBinaryImpl_Create(IDirectXFileBinaryImpl** ppObj);
75 HRESULT IDirectXFileDataImpl_Create(IDirectXFileDataImpl** ppObj);
76 HRESULT IDirectXFileDataReferenceImpl_Create(IDirectXFileDataReferenceImpl** ppObj);
77 HRESULT IDirectXFileEnumObjectImpl_Create(IDirectXFileEnumObjectImpl** ppObj);
78 HRESULT IDirectXFileFileObjectImpl_Create(IDirectXFileObjectImpl** ppObj);
79 HRESULT IDirectXFileFileSaveObjectImpl_Create(IDirectXFileSaveObjectImpl** ppObj);
81 #endif /* __D3DXOF_PRIVATE_INCLUDED__ */