strmbase: Implement BaseControlWindow.
[wine/multimedia.git] / dlls / mshtml / loadopts.c
blobbc5e31fb3d621c4973e417192a74760305788f5a
1 /*
2 * Copyright 2006 Jacek Caban for CodeWeavers
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.
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.
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
19 #include "config.h"
21 #include <stdarg.h>
22 #include <stdio.h>
24 #define COBJMACROS
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winuser.h"
29 #include "ole2.h"
30 #include "optary.h"
32 #include "wine/debug.h"
34 #include "mshtml_private.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
38 typedef struct load_opt {
39 DWORD option;
40 PVOID buffer;
41 DWORD size;
43 struct load_opt *next;
44 } load_opt;
46 typedef struct {
47 IHtmlLoadOptions IHtmlLoadOptions_iface;
49 LONG ref;
51 load_opt *opts;
52 } HTMLLoadOptions;
54 static inline HTMLLoadOptions *impl_from_IHtmlLoadOptions(IHtmlLoadOptions *iface)
56 return CONTAINING_RECORD(iface, HTMLLoadOptions, IHtmlLoadOptions_iface);
59 static HRESULT WINAPI HtmlLoadOptions_QueryInterface(IHtmlLoadOptions *iface,
60 REFIID riid, void **ppv)
62 HTMLLoadOptions *This = impl_from_IHtmlLoadOptions(iface);
64 *ppv = NULL;
66 if(IsEqualGUID(&IID_IUnknown, riid)) {
67 TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
68 *ppv = &This->IHtmlLoadOptions_iface;
69 }else if(IsEqualGUID(&IID_IOptionArray, riid)) {
70 TRACE("(%p)->(IID_IOptionArray %p)\n", This, ppv);
71 *ppv = &This->IHtmlLoadOptions_iface;
72 }else if(IsEqualGUID(&IID_IHtmlLoadOptions, riid)) {
73 TRACE("(%p)->(IID_IHtmlLoadOptions %p)\n", This, ppv);
74 *ppv = &This->IHtmlLoadOptions_iface;
77 if(*ppv) {
78 IHtmlLoadOptions_AddRef(&This->IHtmlLoadOptions_iface);
79 return S_OK;
82 WARN("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppv);
83 return E_NOINTERFACE;
86 static ULONG WINAPI HtmlLoadOptions_AddRef(IHtmlLoadOptions *iface)
88 HTMLLoadOptions *This = impl_from_IHtmlLoadOptions(iface);
89 LONG ref = InterlockedIncrement(&This->ref);
91 TRACE("(%p) ref=%d\n", This, ref);
93 return ref;
96 static ULONG WINAPI HtmlLoadOptions_Release(IHtmlLoadOptions *iface)
98 HTMLLoadOptions *This = impl_from_IHtmlLoadOptions(iface);
99 LONG ref = InterlockedDecrement(&This->ref);
101 TRACE("(%p) ref=%d\n", This, ref);
103 if(!ref) {
104 load_opt *iter = This->opts, *last;
106 while(iter) {
107 last = iter;
108 iter = iter->next;
110 heap_free(last->buffer);
111 heap_free(last);
114 heap_free(This);
117 return ref;
120 static HRESULT WINAPI HtmlLoadOptions_QueryOption(IHtmlLoadOptions *iface, DWORD dwOption,
121 LPVOID pBuffer, ULONG *pcbBuf)
123 HTMLLoadOptions *This = impl_from_IHtmlLoadOptions(iface);
124 load_opt *iter;
126 TRACE("(%p)->(%d %p %p)\n", This, dwOption, pBuffer, pcbBuf);
128 for(iter = This->opts; iter; iter = iter->next) {
129 if(iter->option == dwOption)
130 break;
133 if(!iter) {
134 *pcbBuf = 0;
135 return S_OK;
138 if(*pcbBuf < iter->size) {
139 *pcbBuf = iter->size;
140 return E_FAIL;
143 memcpy(pBuffer, iter->buffer, iter->size);
144 *pcbBuf = iter->size;
146 return S_OK;
149 static HRESULT WINAPI HtmlLoadOptions_SetOption(IHtmlLoadOptions *iface, DWORD dwOption,
150 LPVOID pBuffer, ULONG cbBuf)
152 HTMLLoadOptions *This = impl_from_IHtmlLoadOptions(iface);
153 load_opt *iter = NULL;
155 TRACE("(%p)->(%d %p %d)\n", This, dwOption, pBuffer, cbBuf);
157 for(iter = This->opts; iter; iter = iter->next) {
158 if(iter->option == dwOption)
159 break;
162 if(!iter) {
163 iter = heap_alloc(sizeof(load_opt));
164 iter->next = This->opts;
165 This->opts = iter;
167 iter->option = dwOption;
168 }else {
169 heap_free(iter->buffer);
172 if(!cbBuf) {
173 iter->buffer = NULL;
174 iter->size = 0;
176 return S_OK;
179 iter->size = cbBuf;
180 iter->buffer = heap_alloc(cbBuf);
181 memcpy(iter->buffer, pBuffer, iter->size);
183 return S_OK;
186 static const IHtmlLoadOptionsVtbl HtmlLoadOptionsVtbl = {
187 HtmlLoadOptions_QueryInterface,
188 HtmlLoadOptions_AddRef,
189 HtmlLoadOptions_Release,
190 HtmlLoadOptions_QueryOption,
191 HtmlLoadOptions_SetOption
194 HRESULT HTMLLoadOptions_Create(IUnknown *pUnkOuter, REFIID riid, void** ppv)
196 HTMLLoadOptions *ret;
197 HRESULT hres;
199 TRACE("(%p %s %p)\n", pUnkOuter, debugstr_guid(riid), ppv);
201 ret = heap_alloc(sizeof(HTMLLoadOptions));
203 ret->IHtmlLoadOptions_iface.lpVtbl = &HtmlLoadOptionsVtbl;
204 ret->ref = 1;
205 ret->opts = NULL;
207 hres = IHtmlLoadOptions_QueryInterface(&ret->IHtmlLoadOptions_iface, riid, ppv);
208 IHtmlLoadOptions_Release(&ret->IHtmlLoadOptions_iface);
210 return hres;