Fix warnings generated with -Wsign-compare.
[wine] / dlls / d3d9 / resource.c
1 /*
2  * IDirect3DResource9 implementation
3  *
4  * Copyright 2002-2003 Jason Edmeades
5  *                     Raphael Junqueira
6  *
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.
11  *
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.
16  *
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
20  */
21
22 #include "config.h"
23
24 #include <stdarg.h>
25
26 #define NONAMELESSUNION
27 #define NONAMELESSSTRUCT
28 #include "windef.h"
29 #include "winbase.h"
30 #include "winuser.h"
31 #include "wingdi.h"
32 #include "wine/debug.h"
33
34 #include "d3d9_private.h"
35
36 WINE_DEFAULT_DEBUG_CHANNEL(d3d);
37
38 /* IDirect3DResource9 IUnknown parts follow: */
39 HRESULT WINAPI IDirect3DResource9Impl_QueryInterface(LPDIRECT3DRESOURCE9 iface, REFIID riid, LPVOID* ppobj) {
40     ICOM_THIS(IDirect3DResource9Impl,iface);
41
42     if (IsEqualGUID(riid, &IID_IUnknown)
43         || IsEqualGUID(riid, &IID_IDirect3DResource9)) {
44         IDirect3DResource9Impl_AddRef(iface);
45         *ppobj = This;
46         return D3D_OK;
47     }
48
49     WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
50     return E_NOINTERFACE;
51 }
52
53 ULONG WINAPI IDirect3DResource9Impl_AddRef(LPDIRECT3DRESOURCE9 iface) {
54     ICOM_THIS(IDirect3DResource9Impl,iface);
55     TRACE("(%p) : AddRef from %ld\n", This, This->ref);
56     return ++(This->ref);
57 }
58
59 ULONG WINAPI IDirect3DResource9Impl_Release(LPDIRECT3DRESOURCE9 iface) {
60     ICOM_THIS(IDirect3DResource9Impl,iface);
61     ULONG ref = --This->ref;
62     TRACE("(%p) : ReleaseRef to %ld\n", This, This->ref);
63     if (ref == 0) {
64         HeapFree(GetProcessHeap(), 0, This);
65     }
66     return ref;
67 }
68
69 /* IDirect3DResource9 Interface follow: */
70 HRESULT WINAPI IDirect3DResource9Impl_GetDevice(LPDIRECT3DRESOURCE9 iface, IDirect3DDevice9** ppDevice) {
71     ICOM_THIS(IDirect3DResource9Impl,iface);
72     TRACE("(%p) : returning %p\n", This, This->Device);
73     *ppDevice = (LPDIRECT3DDEVICE9) This->Device;
74     IDirect3DDevice9Impl_AddRef(*ppDevice);
75     return D3D_OK;
76 }
77
78 HRESULT WINAPI IDirect3DResource9Impl_SetPrivateData(LPDIRECT3DRESOURCE9 iface, REFGUID refguid, CONST void* pData, DWORD SizeOfData, DWORD Flags) {
79     ICOM_THIS(IDirect3DResource9Impl,iface);
80     FIXME("(%p) : stub\n", This);
81     return D3D_OK;
82 }
83
84 HRESULT WINAPI IDirect3DResource9Impl_GetPrivateData(LPDIRECT3DRESOURCE9 iface, REFGUID refguid, void* pData, DWORD* pSizeOfData) {
85     ICOM_THIS(IDirect3DResource9Impl,iface);
86     FIXME("(%p) : stub\n", This);
87     return D3D_OK;
88 }
89
90 HRESULT WINAPI IDirect3DResource9Impl_FreePrivateData(LPDIRECT3DRESOURCE9 iface, REFGUID refguid) {
91     ICOM_THIS(IDirect3DResource9Impl,iface);
92     FIXME("(%p) : stub\n", This);
93     return D3D_OK;
94 }
95
96 DWORD  WINAPI IDirect3DResource9Impl_SetPriority(LPDIRECT3DRESOURCE9 iface, DWORD PriorityNew) {
97     ICOM_THIS(IDirect3DResource9Impl,iface);
98     FIXME("(%p) : stub\n", This);
99     return 0;
100 }
101
102 DWORD WINAPI IDirect3DResource9Impl_GetPriority(LPDIRECT3DRESOURCE9 iface) {
103     ICOM_THIS(IDirect3DResource9Impl,iface);
104     FIXME("(%p) : stub\n", This);
105     return 0;
106 }
107
108 void WINAPI IDirect3DResource9Impl_PreLoad(LPDIRECT3DRESOURCE9 iface) {
109     ICOM_THIS(IDirect3DResource9Impl,iface);
110     FIXME("(%p) : stub\n", This);
111 }
112
113 D3DRESOURCETYPE WINAPI IDirect3DResource9Impl_GetType(LPDIRECT3DRESOURCE9 iface) {
114     ICOM_THIS(IDirect3DResource9Impl,iface);
115     TRACE("(%p) : returning %d\n", This, This->ResourceType);
116     return This->ResourceType;
117 }
118
119
120 ICOM_VTABLE(IDirect3DResource9) Direct3DResource9_Vtbl =
121 {
122     ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
123     IDirect3DResource9Impl_QueryInterface,
124     IDirect3DResource9Impl_AddRef,
125     IDirect3DResource9Impl_Release,
126     IDirect3DResource9Impl_GetDevice,
127     IDirect3DResource9Impl_SetPrivateData,
128     IDirect3DResource9Impl_GetPrivateData,
129     IDirect3DResource9Impl_FreePrivateData,
130     IDirect3DResource9Impl_SetPriority,
131     IDirect3DResource9Impl_GetPriority,
132     IDirect3DResource9Impl_PreLoad,
133     IDirect3DResource9Impl_GetType
134 };