Added support for building certain dlls with -DSTRICT.
[wine] / dlls / d3d8 / resource.c
1 /*
2  * IDirect3DResource8 implementation
3  *
4  * Copyright 2002 Jason Edmeades
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include "windef.h"
22 #include "winbase.h"
23 #include "winuser.h"
24 #include "wingdi.h"
25 #include "wine/debug.h"
26
27 #include "d3d8_private.h"
28
29 WINE_DEFAULT_DEBUG_CHANNEL(d3d);
30
31 /* IDirect3DResource IUnknown parts follow: */
32 HRESULT WINAPI IDirect3DResource8Impl_QueryInterface(LPDIRECT3DRESOURCE8 iface,REFIID riid,LPVOID *ppobj)
33 {
34     ICOM_THIS(IDirect3DResource8Impl,iface);
35
36     if (IsEqualGUID(riid, &IID_IUnknown)
37         || IsEqualGUID(riid, &IID_IClassFactory)) {
38         IDirect3DResource8Impl_AddRef(iface);
39         *ppobj = This;
40         return D3D_OK;
41     }
42
43     WARN("(%p)->(%s,%p),not found\n",This,debugstr_guid(riid),ppobj);
44     return E_NOINTERFACE;
45 }
46
47 ULONG WINAPI IDirect3DResource8Impl_AddRef(LPDIRECT3DRESOURCE8 iface) {
48     ICOM_THIS(IDirect3DResource8Impl,iface);
49     TRACE("(%p) : AddRef from %ld\n", This, This->ref);
50     return ++(This->ref);
51 }
52
53 ULONG WINAPI IDirect3DResource8Impl_Release(LPDIRECT3DRESOURCE8 iface) {
54     ICOM_THIS(IDirect3DResource8Impl,iface);
55     ULONG ref = --This->ref;
56     TRACE("(%p) : ReleaseRef to %ld\n", This, This->ref);
57     if (ref == 0)
58         HeapFree(GetProcessHeap(), 0, This);
59     return ref;
60 }
61
62 /* IDirect3DResource Interface follow: */
63 HRESULT  WINAPI        IDirect3DResource8Impl_GetDevice(LPDIRECT3DRESOURCE8 iface, IDirect3DDevice8** ppDevice) {
64     ICOM_THIS(IDirect3DResource8Impl,iface);
65     TRACE("(%p) : returning %p\n", This, This->Device);
66     *ppDevice = (LPDIRECT3DDEVICE8) This->Device;
67     return D3D_OK;
68 }
69 HRESULT  WINAPI        IDirect3DResource8Impl_SetPrivateData(LPDIRECT3DRESOURCE8 iface, REFGUID refguid, CONST void* pData, DWORD SizeOfData, DWORD Flags) {
70     ICOM_THIS(IDirect3DResource8Impl,iface);
71     FIXME("(%p) : stub\n", This);    return D3D_OK;
72 }
73 HRESULT  WINAPI        IDirect3DResource8Impl_GetPrivateData(LPDIRECT3DRESOURCE8 iface, REFGUID refguid, void* pData, DWORD* pSizeOfData) {
74     ICOM_THIS(IDirect3DResource8Impl,iface);
75     FIXME("(%p) : stub\n", This);    return D3D_OK;
76 }
77 HRESULT  WINAPI        IDirect3DResource8Impl_FreePrivateData(LPDIRECT3DRESOURCE8 iface, REFGUID refguid) {
78     ICOM_THIS(IDirect3DResource8Impl,iface);
79     FIXME("(%p) : stub\n", This);    return D3D_OK;
80 }
81 DWORD    WINAPI        IDirect3DResource8Impl_SetPriority(LPDIRECT3DRESOURCE8 iface, DWORD PriorityNew) {
82     ICOM_THIS(IDirect3DResource8Impl,iface);
83     FIXME("(%p) : stub\n", This);    return D3D_OK;
84 }
85 DWORD    WINAPI        IDirect3DResource8Impl_GetPriority(LPDIRECT3DRESOURCE8 iface) {
86     ICOM_THIS(IDirect3DResource8Impl,iface);
87     FIXME("(%p) : stub\n", This);    return D3D_OK;
88 }
89 void     WINAPI        IDirect3DResource8Impl_PreLoad(LPDIRECT3DRESOURCE8 iface) {
90     ICOM_THIS(IDirect3DResource8Impl,iface);
91     FIXME("(%p) : stub\n", This);
92 }
93 D3DRESOURCETYPE WINAPI IDirect3DResource8Impl_GetType(LPDIRECT3DRESOURCE8 iface) {
94     ICOM_THIS(IDirect3DResource8Impl,iface);
95     TRACE("(%p) : returning %d\n", This, This->ResourceType);
96     return This->ResourceType;
97 }
98
99 ICOM_VTABLE(IDirect3DResource8) Direct3DResource8_Vtbl =
100 {
101     ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
102     IDirect3DResource8Impl_QueryInterface,
103     IDirect3DResource8Impl_AddRef,
104     IDirect3DResource8Impl_Release,
105     IDirect3DResource8Impl_GetDevice,
106     IDirect3DResource8Impl_SetPrivateData,
107     IDirect3DResource8Impl_GetPrivateData,
108     IDirect3DResource8Impl_FreePrivateData,
109     IDirect3DResource8Impl_SetPriority,
110     IDirect3DResource8Impl_GetPriority,
111     IDirect3DResource8Impl_PreLoad,
112     IDirect3DResource8Impl_GetType
113 };