Fixed header dependencies to be fully compatible with the Windows
[wine/multimedia.git] / dlls / d3d9 / query.c
blob5b8c640bcf638da68d1f1d1fe8c2bdb027796eb3
1 /*
2 * IDirect3DQuery9 implementation
4 * Copyright 2002-2003 Raphael Junqueira
5 * Jason Edmeades
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "config.h"
24 #include <math.h>
25 #include <stdarg.h>
27 #define NONAMELESSUNION
28 #define NONAMELESSSTRUCT
29 #include "windef.h"
30 #include "winbase.h"
31 #include "winuser.h"
32 #include "wingdi.h"
33 #include "wine/debug.h"
35 #include "d3d9_private.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(d3d);
39 /* IDirect3DQuery9 IUnknown parts follow: */
40 HRESULT WINAPI IDirect3DQuery9Impl_QueryInterface(LPDIRECT3DQUERY9 iface, REFIID riid, LPVOID* ppobj) {
41 ICOM_THIS(IDirect3DQuery9Impl,iface);
43 if (IsEqualGUID(riid, &IID_IUnknown)
44 || IsEqualGUID(riid, &IID_IDirect3DQuery9)) {
45 IDirect3DQuery9Impl_AddRef(iface);
46 *ppobj = This;
47 return D3D_OK;
50 WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
51 return E_NOINTERFACE;
54 ULONG WINAPI IDirect3DQuery9Impl_AddRef(LPDIRECT3DQUERY9 iface) {
55 ICOM_THIS(IDirect3DQuery9Impl,iface);
56 TRACE("(%p) : AddRef from %ld\n", This, This->ref);
57 return ++(This->ref);
60 ULONG WINAPI IDirect3DQuery9Impl_Release(LPDIRECT3DQUERY9 iface) {
61 ICOM_THIS(IDirect3DQuery9Impl,iface);
62 ULONG ref = --This->ref;
63 TRACE("(%p) : ReleaseRef to %ld\n", This, This->ref);
64 if (ref == 0) {
65 HeapFree(GetProcessHeap(), 0, This);
67 return ref;
70 /* IDirect3DQuery9 Interface follow: */
71 HRESULT WINAPI IDirect3DQuery9Impl_GetDevice(LPDIRECT3DQUERY9 iface, IDirect3DDevice9** ppDevice) {
72 ICOM_THIS(IDirect3DQuery9Impl,iface);
73 TRACE("(%p) : returning %p\n", This, This->Device);
74 *ppDevice = (LPDIRECT3DDEVICE9) This->Device;
75 IDirect3DDevice9Impl_AddRef(*ppDevice);
76 return D3D_OK;
79 D3DQUERYTYPE WINAPI IDirect3DQuery9Impl_GetType(LPDIRECT3DQUERY9 iface) {
80 ICOM_THIS(IDirect3DQuery9Impl,iface);
81 FIXME("(%p) : stub\n", This);
82 return 0;
85 DWORD WINAPI IDirect3DQuery9Impl_GetDataSize(LPDIRECT3DQUERY9 iface) {
86 ICOM_THIS(IDirect3DQuery9Impl,iface);
87 FIXME("(%p) : stub\n", This);
88 return 0;
91 HRESULT WINAPI IDirect3DQuery9Impl_Issue(LPDIRECT3DQUERY9 iface, DWORD dwIssueFlags) {
92 ICOM_THIS(IDirect3DQuery9Impl,iface);
93 FIXME("(%p) : stub\n", This);
94 return D3D_OK;
97 HRESULT WINAPI IDirect3DQuery9Impl_GetData(LPDIRECT3DQUERY9 iface, void* pData, DWORD dwSize, DWORD dwGetDataFlags) {
98 ICOM_THIS(IDirect3DQuery9Impl,iface);
99 FIXME("(%p) : stub\n", This);
100 return D3D_OK;
104 ICOM_VTABLE(IDirect3DQuery9) Direct3DQuery9_Vtbl =
106 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
107 IDirect3DQuery9Impl_QueryInterface,
108 IDirect3DQuery9Impl_AddRef,
109 IDirect3DQuery9Impl_Release,
110 IDirect3DQuery9Impl_GetDevice,
111 IDirect3DQuery9Impl_GetType,
112 IDirect3DQuery9Impl_GetDataSize,
113 IDirect3DQuery9Impl_Issue,
114 IDirect3DQuery9Impl_GetData
118 /* IDirect3DDevice9 IDirect3DQuery9 Methods follow: */
119 HRESULT WINAPI IDirect3DDevice9Impl_CreateQuery(LPDIRECT3DDEVICE9 iface, D3DQUERYTYPE Type, IDirect3DQuery9** ppQuery) {
120 ICOM_THIS(IDirect3DDevice9Impl,iface);
121 FIXME("(%p) : stub\n", This);
122 return D3D_OK;