windowscodecs: Add stub ICO decoder.
[wine] / dlls / windowscodecs / icoformat.c
1 /*
2  * Copyright 2009 Vincent Povirk for CodeWeavers
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #include "config.h"
20
21 #include <stdarg.h>
22
23 #define COBJMACROS
24
25 #include "windef.h"
26 #include "winbase.h"
27 #include "objbase.h"
28 #include "wincodec.h"
29
30 #include "wincodecs_private.h"
31
32 #include "wine/debug.h"
33
34 WINE_DEFAULT_DEBUG_CHANNEL(wincodecs);
35
36 #include "pshpack1.h"
37
38 typedef struct {
39     BYTE bWidth;
40     BYTE bHeight;
41     BYTE bColorCount;
42     BYTE bReserved;
43     WORD wPlanes;
44     WORD wBitCount;
45     DWORD dwDIBSize;
46     DWORD dwDIBOffset;
47 } ICONDIRENTRY;
48
49 typedef struct
50 {
51     WORD idReserved;
52     WORD idType;
53     WORD idCount;
54 } ICONHEADER;
55
56 #include "poppack.h"
57
58 typedef struct {
59     const IWICBitmapDecoderVtbl *lpVtbl;
60     LONG ref;
61 } IcoDecoder;
62
63 static HRESULT WINAPI IcoDecoder_QueryInterface(IWICBitmapDecoder *iface, REFIID iid,
64     void **ppv)
65 {
66     IcoDecoder *This = (IcoDecoder*)iface;
67     TRACE("(%p,%s,%p)\n", iface, debugstr_guid(iid), ppv);
68
69     if (!ppv) return E_INVALIDARG;
70
71     if (IsEqualIID(&IID_IUnknown, iid) || IsEqualIID(&IID_IWICBitmapDecoder, iid))
72     {
73         *ppv = This;
74     }
75     else
76     {
77         *ppv = NULL;
78         return E_NOINTERFACE;
79     }
80
81     IUnknown_AddRef((IUnknown*)*ppv);
82     return S_OK;
83 }
84
85 static ULONG WINAPI IcoDecoder_AddRef(IWICBitmapDecoder *iface)
86 {
87     IcoDecoder *This = (IcoDecoder*)iface;
88     ULONG ref = InterlockedIncrement(&This->ref);
89
90     TRACE("(%p) refcount=%u\n", iface, ref);
91
92     return ref;
93 }
94
95 static ULONG WINAPI IcoDecoder_Release(IWICBitmapDecoder *iface)
96 {
97     IcoDecoder *This = (IcoDecoder*)iface;
98     ULONG ref = InterlockedDecrement(&This->ref);
99
100     TRACE("(%p) refcount=%u\n", iface, ref);
101
102     if (ref == 0)
103     {
104         HeapFree(GetProcessHeap(), 0, This);
105     }
106
107     return ref;
108 }
109
110 static HRESULT WINAPI IcoDecoder_QueryCapability(IWICBitmapDecoder *iface, IStream *pIStream,
111     DWORD *pdwCapability)
112 {
113     FIXME("(%p,%p,%p): stub\n", iface, pIStream, pdwCapability);
114     return E_NOTIMPL;
115 }
116
117 static HRESULT WINAPI IcoDecoder_Initialize(IWICBitmapDecoder *iface, IStream *pIStream,
118     WICDecodeOptions cacheOptions)
119 {
120     FIXME("(%p,%p,%x): stub\n", iface, pIStream, cacheOptions);
121     return E_NOTIMPL;
122 }
123
124 static HRESULT WINAPI IcoDecoder_GetContainerFormat(IWICBitmapDecoder *iface,
125     GUID *pguidContainerFormat)
126 {
127     FIXME("(%p,%p): stub\n", iface, pguidContainerFormat);
128     return E_NOTIMPL;
129 }
130
131 static HRESULT WINAPI IcoDecoder_GetDecoderInfo(IWICBitmapDecoder *iface,
132     IWICBitmapDecoderInfo **ppIDecoderInfo)
133 {
134     FIXME("(%p,%p): stub\n", iface, ppIDecoderInfo);
135     return E_NOTIMPL;
136 }
137
138 static HRESULT WINAPI IcoDecoder_CopyPalette(IWICBitmapDecoder *iface,
139     IWICPalette *pIPalette)
140 {
141     TRACE("(%p,%p)\n", iface, pIPalette);
142     return WINCODEC_ERR_PALETTEUNAVAILABLE;
143 }
144
145 static HRESULT WINAPI IcoDecoder_GetMetadataQueryReader(IWICBitmapDecoder *iface,
146     IWICMetadataQueryReader **ppIMetadataQueryReader)
147 {
148     TRACE("(%p,%p)\n", iface, ppIMetadataQueryReader);
149     return WINCODEC_ERR_UNSUPPORTEDOPERATION;
150 }
151
152 static HRESULT WINAPI IcoDecoder_GetPreview(IWICBitmapDecoder *iface,
153     IWICBitmapSource **ppIBitmapSource)
154 {
155     TRACE("(%p,%p)\n", iface, ppIBitmapSource);
156     return WINCODEC_ERR_UNSUPPORTEDOPERATION;
157 }
158
159 static HRESULT WINAPI IcoDecoder_GetColorContexts(IWICBitmapDecoder *iface,
160     UINT cCount, IWICColorContext **ppIColorContexts, UINT *pcActualCount)
161 {
162     TRACE("(%p,%u,%p,%p)\n", iface, cCount, ppIColorContexts, pcActualCount);
163     return WINCODEC_ERR_UNSUPPORTEDOPERATION;
164 }
165
166 static HRESULT WINAPI IcoDecoder_GetThumbnail(IWICBitmapDecoder *iface,
167     IWICBitmapSource **ppIThumbnail)
168 {
169     TRACE("(%p,%p)\n", iface, ppIThumbnail);
170     return WINCODEC_ERR_CODECNOTHUMBNAIL;
171 }
172
173 static HRESULT WINAPI IcoDecoder_GetFrameCount(IWICBitmapDecoder *iface,
174     UINT *pCount)
175 {
176     FIXME("(%p,%p): stub\n", iface, pCount);
177     return E_NOTIMPL;
178 }
179
180 static HRESULT WINAPI IcoDecoder_GetFrame(IWICBitmapDecoder *iface,
181     UINT index, IWICBitmapFrameDecode **ppIBitmapFrame)
182 {
183     FIXME("(%p,%u,%p): stub\n", iface, index, ppIBitmapFrame);
184     return E_NOTIMPL;
185 }
186
187 static const IWICBitmapDecoderVtbl IcoDecoder_Vtbl = {
188     IcoDecoder_QueryInterface,
189     IcoDecoder_AddRef,
190     IcoDecoder_Release,
191     IcoDecoder_QueryCapability,
192     IcoDecoder_Initialize,
193     IcoDecoder_GetContainerFormat,
194     IcoDecoder_GetDecoderInfo,
195     IcoDecoder_CopyPalette,
196     IcoDecoder_GetMetadataQueryReader,
197     IcoDecoder_GetPreview,
198     IcoDecoder_GetColorContexts,
199     IcoDecoder_GetThumbnail,
200     IcoDecoder_GetFrameCount,
201     IcoDecoder_GetFrame
202 };
203
204 HRESULT IcoDecoder_CreateInstance(IUnknown *pUnkOuter, REFIID iid, void** ppv)
205 {
206     IcoDecoder *This;
207     HRESULT ret;
208
209     TRACE("(%p,%s,%p)\n", pUnkOuter, debugstr_guid(iid), ppv);
210
211     *ppv = NULL;
212
213     if (pUnkOuter) return CLASS_E_NOAGGREGATION;
214
215     This = HeapAlloc(GetProcessHeap(), 0, sizeof(IcoDecoder));
216     if (!This) return E_OUTOFMEMORY;
217
218     This->lpVtbl = &IcoDecoder_Vtbl;
219     This->ref = 1;
220
221     ret = IUnknown_QueryInterface((IUnknown*)This, iid, ppv);
222     IUnknown_Release((IUnknown*)This);
223
224     return ret;
225 }