2 * Copyright 2005 Jacek Caban
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
25 #define NONAMELESSUNION
26 #define NONAMELESSSTRUCT
35 #include "wine/debug.h"
36 #include "wine/unicode.h"
38 #include "mshtml_private.h"
39 #include "htmlevent.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
47 } download_proc_task_t;
49 static BOOL use_gecko_script(LPCWSTR url)
51 static const WCHAR fileW[] = {'f','i','l','e',':'};
52 static const WCHAR aboutW[] = {'a','b','o','u','t',':'};
53 static const WCHAR resW[] = {'r','e','s',':'};
55 return strncmpiW(fileW, url, sizeof(fileW)/sizeof(WCHAR))
56 && strncmpiW(aboutW, url, sizeof(aboutW)/sizeof(WCHAR))
57 && strncmpiW(resW, url, sizeof(resW)/sizeof(WCHAR));
60 void set_current_mon(HTMLWindow *This, IMoniker *mon)
65 IMoniker_Release(This->mon);
70 CoTaskMemFree(This->url);
80 hres = IMoniker_GetDisplayName(mon, NULL, NULL, &This->url);
82 WARN("GetDisplayName failed: %08x\n", hres);
84 set_script_mode(This, use_gecko_script(This->url) ? SCRIPTMODE_GECKO : SCRIPTMODE_ACTIVESCRIPT);
87 static void set_progress_proc(task_t *_task)
89 docobj_task_t *task = (docobj_task_t*)_task;
90 IOleCommandTarget *olecmd = NULL;
91 HTMLDocumentObj *doc = task->doc;
97 IOleClientSite_QueryInterface(doc->client, &IID_IOleCommandTarget, (void**)&olecmd);
100 VARIANT progress_max, progress;
102 V_VT(&progress_max) = VT_I4;
103 V_I4(&progress_max) = 0; /* FIXME */
104 IOleCommandTarget_Exec(olecmd, NULL, OLECMDID_SETPROGRESSMAX, OLECMDEXECOPT_DONTPROMPTUSER,
105 &progress_max, NULL);
107 V_VT(&progress) = VT_I4;
108 V_I4(&progress) = 0; /* FIXME */
109 IOleCommandTarget_Exec(olecmd, NULL, OLECMDID_SETPROGRESSPOS, OLECMDEXECOPT_DONTPROMPTUSER,
113 if(doc->usermode == EDITMODE && doc->hostui) {
114 DOCHOSTUIINFO hostinfo;
116 memset(&hostinfo, 0, sizeof(DOCHOSTUIINFO));
117 hostinfo.cbSize = sizeof(DOCHOSTUIINFO);
118 hres = IDocHostUIHandler_GetHostInfo(doc->hostui, &hostinfo);
120 /* FIXME: use hostinfo */
121 TRACE("hostinfo = {%u %08x %08x %s %s}\n",
122 hostinfo.cbSize, hostinfo.dwFlags, hostinfo.dwDoubleClick,
123 debugstr_w(hostinfo.pchHostCss), debugstr_w(hostinfo.pchHostNS));
127 static void set_downloading_proc(task_t *_task)
129 download_proc_task_t *task = (download_proc_task_t*)_task;
130 HTMLDocumentObj *doc = task->doc;
131 IOleCommandTarget *olecmd;
134 TRACE("(%p)\n", doc);
137 IOleInPlaceFrame_SetStatusText(doc->frame, NULL /* FIXME */);
142 if(task->set_download) {
143 hres = IOleClientSite_QueryInterface(doc->client, &IID_IOleCommandTarget, (void**)&olecmd);
144 if(SUCCEEDED(hres)) {
150 IOleCommandTarget_Exec(olecmd, NULL, OLECMDID_SETDOWNLOADSTATE,
151 OLECMDEXECOPT_DONTPROMPTUSER, &var, NULL);
152 IOleCommandTarget_Release(olecmd);
155 doc->download_state = 1;
159 IDropTarget *drop_target = NULL;
161 hres = IDocHostUIHandler_GetDropTarget(doc->hostui, NULL /* FIXME */, &drop_target);
163 FIXME("Use IDropTarget\n");
164 IDropTarget_Release(drop_target);
169 static HRESULT set_moniker(HTMLDocument *This, IMoniker *mon, IBindCtx *pibc, BOOL set_download)
171 nsChannelBSC *bscallback;
174 download_proc_task_t *download_task;
179 IUnknown *unk = NULL;
183 * "__PrecreatedObject"
184 * "BIND_CONTEXT_PARAM"
185 * "__HTMLLOADOPTIONS"
189 * "_ITransData_Object_"
193 IBindCtx_GetObjectParam(pibc, (LPOLESTR)SZ_HTML_CLIENTSITE_OBJECTPARAM, &unk);
195 IOleClientSite *client = NULL;
197 hres = IUnknown_QueryInterface(unk, &IID_IOleClientSite, (void**)&client);
198 if(SUCCEEDED(hres)) {
199 TRACE("Got client site %p\n", client);
200 IOleObject_SetClientSite(OLEOBJ(This), client);
201 IOleClientSite_Release(client);
204 IUnknown_Release(unk);
208 set_ready_state(This->window, READYSTATE_LOADING);
209 update_doc(This, UPDATE_TITLE);
211 HTMLDocument_LockContainer(This->doc_obj, TRUE);
213 hres = IMoniker_GetDisplayName(mon, pibc, NULL, &url);
215 WARN("GetDiaplayName failed: %08x\n", hres);
219 TRACE("got url: %s\n", debugstr_w(url));
221 set_current_mon(This->window, mon);
223 if(This->doc_obj->client) {
224 VARIANT silent, offline;
225 IOleCommandTarget *cmdtrg = NULL;
227 hres = get_client_disp_property(This->doc_obj->client, DISPID_AMBIENT_SILENT, &silent);
228 if(SUCCEEDED(hres)) {
229 if(V_VT(&silent) != VT_BOOL)
230 WARN("V_VT(silent) = %d\n", V_VT(&silent));
231 else if(V_BOOL(&silent))
232 FIXME("silent == true\n");
235 hres = get_client_disp_property(This->doc_obj->client,
236 DISPID_AMBIENT_OFFLINEIFNOTCONNECTED, &offline);
237 if(SUCCEEDED(hres)) {
238 if(V_VT(&silent) != VT_BOOL)
239 WARN("V_VT(offline) = %d\n", V_VT(&silent));
240 else if(V_BOOL(&silent))
241 FIXME("offline == true\n");
244 hres = IOleClientSite_QueryInterface(This->doc_obj->client, &IID_IOleCommandTarget,
246 if(SUCCEEDED(hres)) {
251 IOleCommandTarget_Exec(cmdtrg, &CGID_ShellDocView, 37, 0, &var, NULL);
253 IOleCommandTarget_Release(cmdtrg);
257 hres = create_doc_uri(This->window, url, &nsuri);
262 bscallback = create_channelbsc(mon);
264 nsIWineURI_SetChannelBSC(nsuri, bscallback);
265 hres = load_nsuri(This->window, nsuri, LOAD_INITIAL_DOCUMENT_URI);
266 nsIWineURI_SetChannelBSC(nsuri, NULL);
268 set_window_bscallback(This->window, bscallback);
269 IUnknown_Release((IUnknown*)bscallback);
273 if(This->doc_obj->frame) {
274 task = heap_alloc(sizeof(docobj_task_t));
275 task->doc = This->doc_obj;
276 push_task(&task->header, set_progress_proc, This->doc_obj->basedoc.task_magic);
279 download_task = heap_alloc(sizeof(download_proc_task_t));
280 download_task->doc = This->doc_obj;
281 download_task->set_download = set_download;
282 push_task(&download_task->header, set_downloading_proc, This->doc_obj->basedoc.task_magic);
287 void set_ready_state(HTMLWindow *window, READYSTATE readystate)
289 window->readystate = readystate;
290 if(window->doc_obj && window->doc_obj->basedoc.window == window)
291 call_property_onchanged(&window->doc_obj->basedoc.cp_propnotif, DISPID_READYSTATE);
292 if(window->frame_element)
293 fire_event(window->frame_element->element.node.doc, EVENTID_READYSTATECHANGE,
294 window->frame_element->element.node.nsnode, NULL);
297 static HRESULT get_doc_string(HTMLDocumentNode *This, char **str)
305 WARN("NULL nsdoc\n");
309 nsres = nsIDOMHTMLDocument_QueryInterface(This->nsdoc, &IID_nsIDOMNode, (void**)&nsnode);
310 if(NS_FAILED(nsres)) {
311 ERR("Could not get nsIDOMNode failed: %08x\n", nsres);
315 nsAString_Init(&nsstr, NULL);
316 nsnode_to_nsstring(nsnode, &nsstr);
317 nsIDOMNode_Release(nsnode);
319 nsAString_GetData(&nsstr, &strw);
320 TRACE("%s\n", debugstr_w(strw));
322 *str = heap_strdupWtoA(strw);
324 nsAString_Finish(&nsstr);
330 /**********************************************************
331 * IPersistMoniker implementation
334 #define PERSISTMON_THIS(iface) DEFINE_THIS(HTMLDocument, PersistMoniker, iface)
336 static HRESULT WINAPI PersistMoniker_QueryInterface(IPersistMoniker *iface, REFIID riid,
339 HTMLDocument *This = PERSISTMON_THIS(iface);
340 return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppvObject);
343 static ULONG WINAPI PersistMoniker_AddRef(IPersistMoniker *iface)
345 HTMLDocument *This = PERSISTMON_THIS(iface);
346 return IHTMLDocument2_AddRef(HTMLDOC(This));
349 static ULONG WINAPI PersistMoniker_Release(IPersistMoniker *iface)
351 HTMLDocument *This = PERSISTMON_THIS(iface);
352 return IHTMLDocument2_Release(HTMLDOC(This));
355 static HRESULT WINAPI PersistMoniker_GetClassID(IPersistMoniker *iface, CLSID *pClassID)
357 HTMLDocument *This = PERSISTMON_THIS(iface);
358 return IPersist_GetClassID(PERSIST(This), pClassID);
361 static HRESULT WINAPI PersistMoniker_IsDirty(IPersistMoniker *iface)
363 HTMLDocument *This = PERSISTMON_THIS(iface);
365 TRACE("(%p)\n", This);
367 return IPersistStreamInit_IsDirty(PERSTRINIT(This));
370 static HRESULT WINAPI PersistMoniker_Load(IPersistMoniker *iface, BOOL fFullyAvailable,
371 IMoniker *pimkName, LPBC pibc, DWORD grfMode)
373 HTMLDocument *This = PERSISTMON_THIS(iface);
376 TRACE("(%p)->(%x %p %p %08x)\n", This, fFullyAvailable, pimkName, pibc, grfMode);
378 hres = set_moniker(This, pimkName, pibc, TRUE);
382 return start_binding(This->window, NULL, (BSCallback*)This->window->bscallback, pibc);
385 static HRESULT WINAPI PersistMoniker_Save(IPersistMoniker *iface, IMoniker *pimkName,
386 LPBC pbc, BOOL fRemember)
388 HTMLDocument *This = PERSISTMON_THIS(iface);
389 FIXME("(%p)->(%p %p %x)\n", This, pimkName, pbc, fRemember);
393 static HRESULT WINAPI PersistMoniker_SaveCompleted(IPersistMoniker *iface, IMoniker *pimkName, LPBC pibc)
395 HTMLDocument *This = PERSISTMON_THIS(iface);
396 FIXME("(%p)->(%p %p)\n", This, pimkName, pibc);
400 static HRESULT WINAPI PersistMoniker_GetCurMoniker(IPersistMoniker *iface, IMoniker **ppimkName)
402 HTMLDocument *This = PERSISTMON_THIS(iface);
404 TRACE("(%p)->(%p)\n", This, ppimkName);
406 if(!This->window || !This->window->mon)
409 IMoniker_AddRef(This->window->mon);
410 *ppimkName = This->window->mon;
414 static const IPersistMonikerVtbl PersistMonikerVtbl = {
415 PersistMoniker_QueryInterface,
416 PersistMoniker_AddRef,
417 PersistMoniker_Release,
418 PersistMoniker_GetClassID,
419 PersistMoniker_IsDirty,
422 PersistMoniker_SaveCompleted,
423 PersistMoniker_GetCurMoniker
426 /**********************************************************
427 * IMonikerProp implementation
430 #define MONPROP_THIS(iface) DEFINE_THIS(HTMLDocument, MonikerProp, iface)
432 static HRESULT WINAPI MonikerProp_QueryInterface(IMonikerProp *iface, REFIID riid, void **ppvObject)
434 HTMLDocument *This = MONPROP_THIS(iface);
435 return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppvObject);
438 static ULONG WINAPI MonikerProp_AddRef(IMonikerProp *iface)
440 HTMLDocument *This = MONPROP_THIS(iface);
441 return IHTMLDocument2_AddRef(HTMLDOC(This));
444 static ULONG WINAPI MonikerProp_Release(IMonikerProp *iface)
446 HTMLDocument *This = MONPROP_THIS(iface);
447 return IHTMLDocument_Release(HTMLDOC(This));
450 static HRESULT WINAPI MonikerProp_PutProperty(IMonikerProp *iface, MONIKERPROPERTY mkp, LPCWSTR val)
452 HTMLDocument *This = MONPROP_THIS(iface);
454 TRACE("(%p)->(%d %s)\n", This, mkp, debugstr_w(val));
458 heap_free(This->doc_obj->mime);
459 This->doc_obj->mime = heap_strdupW(val);
466 FIXME("mkp %d\n", mkp);
473 static const IMonikerPropVtbl MonikerPropVtbl = {
474 MonikerProp_QueryInterface,
477 MonikerProp_PutProperty
480 /**********************************************************
481 * IPersistFile implementation
484 #define PERSISTFILE_THIS(iface) DEFINE_THIS(HTMLDocument, PersistFile, iface)
486 static HRESULT WINAPI PersistFile_QueryInterface(IPersistFile *iface, REFIID riid, void **ppvObject)
488 HTMLDocument *This = PERSISTFILE_THIS(iface);
489 return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppvObject);
492 static ULONG WINAPI PersistFile_AddRef(IPersistFile *iface)
494 HTMLDocument *This = PERSISTFILE_THIS(iface);
495 return IHTMLDocument2_AddRef(HTMLDOC(This));
498 static ULONG WINAPI PersistFile_Release(IPersistFile *iface)
500 HTMLDocument *This = PERSISTFILE_THIS(iface);
501 return IHTMLDocument2_Release(HTMLDOC(This));
504 static HRESULT WINAPI PersistFile_GetClassID(IPersistFile *iface, CLSID *pClassID)
506 HTMLDocument *This = PERSISTFILE_THIS(iface);
508 TRACE("(%p)->(%p)\n", This, pClassID);
513 *pClassID = CLSID_HTMLDocument;
517 static HRESULT WINAPI PersistFile_IsDirty(IPersistFile *iface)
519 HTMLDocument *This = PERSISTFILE_THIS(iface);
521 TRACE("(%p)\n", This);
523 return IPersistStreamInit_IsDirty(PERSTRINIT(This));
526 static HRESULT WINAPI PersistFile_Load(IPersistFile *iface, LPCOLESTR pszFileName, DWORD dwMode)
528 HTMLDocument *This = PERSISTFILE_THIS(iface);
529 FIXME("(%p)->(%s %08x)\n", This, debugstr_w(pszFileName), dwMode);
533 static HRESULT WINAPI PersistFile_Save(IPersistFile *iface, LPCOLESTR pszFileName, BOOL fRemember)
535 HTMLDocument *This = PERSISTFILE_THIS(iface);
541 TRACE("(%p)->(%s %x)\n", This, debugstr_w(pszFileName), fRemember);
543 file = CreateFileW(pszFileName, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS,
544 FILE_ATTRIBUTE_NORMAL, NULL);
545 if(file == INVALID_HANDLE_VALUE) {
546 WARN("Could not create file: %u\n", GetLastError());
550 hres = get_doc_string(This->doc_node, &str);
552 WriteFile(file, str, strlen(str), &written, NULL);
558 static HRESULT WINAPI PersistFile_SaveCompleted(IPersistFile *iface, LPCOLESTR pszFileName)
560 HTMLDocument *This = PERSISTFILE_THIS(iface);
561 FIXME("(%p)->(%s)\n", This, debugstr_w(pszFileName));
565 static HRESULT WINAPI PersistFile_GetCurFile(IPersistFile *iface, LPOLESTR *pszFileName)
567 HTMLDocument *This = PERSISTFILE_THIS(iface);
568 FIXME("(%p)->(%p)\n", This, pszFileName);
572 static const IPersistFileVtbl PersistFileVtbl = {
573 PersistFile_QueryInterface,
576 PersistFile_GetClassID,
580 PersistFile_SaveCompleted,
581 PersistFile_GetCurFile
584 #define PERSTRINIT_THIS(iface) DEFINE_THIS(HTMLDocument, PersistStreamInit, iface)
586 static HRESULT WINAPI PersistStreamInit_QueryInterface(IPersistStreamInit *iface,
587 REFIID riid, void **ppv)
589 HTMLDocument *This = PERSTRINIT_THIS(iface);
590 return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppv);
593 static ULONG WINAPI PersistStreamInit_AddRef(IPersistStreamInit *iface)
595 HTMLDocument *This = PERSTRINIT_THIS(iface);
596 return IHTMLDocument2_AddRef(HTMLDOC(This));
599 static ULONG WINAPI PersistStreamInit_Release(IPersistStreamInit *iface)
601 HTMLDocument *This = PERSTRINIT_THIS(iface);
602 return IHTMLDocument2_Release(HTMLDOC(This));
605 static HRESULT WINAPI PersistStreamInit_GetClassID(IPersistStreamInit *iface, CLSID *pClassID)
607 HTMLDocument *This = PERSTRINIT_THIS(iface);
608 return IPersist_GetClassID(PERSIST(This), pClassID);
611 static HRESULT WINAPI PersistStreamInit_IsDirty(IPersistStreamInit *iface)
613 HTMLDocument *This = PERSTRINIT_THIS(iface);
615 TRACE("(%p)\n", This);
617 if(This->doc_obj->usermode == EDITMODE)
618 return editor_is_dirty(This);
623 static HRESULT WINAPI PersistStreamInit_Load(IPersistStreamInit *iface, LPSTREAM pStm)
625 HTMLDocument *This = PERSTRINIT_THIS(iface);
629 static const WCHAR about_blankW[] = {'a','b','o','u','t',':','b','l','a','n','k',0};
631 TRACE("(%p)->(%p)\n", This, pStm);
633 hres = CreateURLMoniker(NULL, about_blankW, &mon);
635 WARN("CreateURLMoniker failed: %08x\n", hres);
639 hres = set_moniker(This, mon, NULL, TRUE);
640 IMoniker_Release(mon);
644 return channelbsc_load_stream(This->window->bscallback, pStm);
647 static HRESULT WINAPI PersistStreamInit_Save(IPersistStreamInit *iface, LPSTREAM pStm,
650 HTMLDocument *This = PERSTRINIT_THIS(iface);
655 TRACE("(%p)->(%p %x)\n", This, pStm, fClearDirty);
657 hres = get_doc_string(This->doc_node, &str);
661 hres = IStream_Write(pStm, str, strlen(str), &written);
663 FIXME("Write failed: %08x\n", hres);
668 set_dirty(This, VARIANT_FALSE);
673 static HRESULT WINAPI PersistStreamInit_GetSizeMax(IPersistStreamInit *iface,
674 ULARGE_INTEGER *pcbSize)
676 HTMLDocument *This = PERSTRINIT_THIS(iface);
677 FIXME("(%p)->(%p)\n", This, pcbSize);
681 static HRESULT WINAPI PersistStreamInit_InitNew(IPersistStreamInit *iface)
683 HTMLDocument *This = PERSTRINIT_THIS(iface);
689 static const WCHAR about_blankW[] = {'a','b','o','u','t',':','b','l','a','n','k',0};
690 static const WCHAR html_bodyW[] = {'<','H','T','M','L','>','<','/','H','T','M','L','>',0};
692 TRACE("(%p)\n", This);
694 body = GlobalAlloc(0, sizeof(html_bodyW));
696 return E_OUTOFMEMORY;
697 memcpy(body, html_bodyW, sizeof(html_bodyW));
699 hres = CreateURLMoniker(NULL, about_blankW, &mon);
701 WARN("CreateURLMoniker failed: %08x\n", hres);
706 hres = set_moniker(This, mon, NULL, FALSE);
707 IMoniker_Release(mon);
713 hres = CreateStreamOnHGlobal(body, TRUE, &stream);
719 hres = channelbsc_load_stream(This->window->bscallback, stream);
721 IStream_Release(stream);
725 #undef PERSTRINIT_THIS
727 static const IPersistStreamInitVtbl PersistStreamInitVtbl = {
728 PersistStreamInit_QueryInterface,
729 PersistStreamInit_AddRef,
730 PersistStreamInit_Release,
731 PersistStreamInit_GetClassID,
732 PersistStreamInit_IsDirty,
733 PersistStreamInit_Load,
734 PersistStreamInit_Save,
735 PersistStreamInit_GetSizeMax,
736 PersistStreamInit_InitNew
739 /**********************************************************
740 * IPersistHistory implementation
743 #define PERSISTHIST_THIS(iface) DEFINE_THIS(HTMLDocument, PersistHistory, iface)
745 static HRESULT WINAPI PersistHistory_QueryInterface(IPersistHistory *iface, REFIID riid, void **ppvObject)
747 HTMLDocument *This = PERSISTHIST_THIS(iface);
748 return IHTMLDocument2_QueryInterface(HTMLDOC(This), riid, ppvObject);
751 static ULONG WINAPI PersistHistory_AddRef(IPersistHistory *iface)
753 HTMLDocument *This = PERSISTHIST_THIS(iface);
754 return IHTMLDocument2_AddRef(HTMLDOC(This));
757 static ULONG WINAPI PersistHistory_Release(IPersistHistory *iface)
759 HTMLDocument *This = PERSISTHIST_THIS(iface);
760 return IHTMLDocument2_Release(HTMLDOC(This));
763 static HRESULT WINAPI PersistHistory_GetClassID(IPersistHistory *iface, CLSID *pClassID)
765 HTMLDocument *This = PERSISTHIST_THIS(iface);
766 return IPersist_GetClassID(PERSIST(This), pClassID);
769 static HRESULT WINAPI PersistHistory_LoadHistory(IPersistHistory *iface, IStream *pStream, IBindCtx *pbc)
771 HTMLDocument *This = PERSISTHIST_THIS(iface);
772 FIXME("(%p)->(%p %p)\n", This, pStream, pbc);
776 static HRESULT WINAPI PersistHistory_SaveHistory(IPersistHistory *iface, IStream *pStream)
778 HTMLDocument *This = PERSISTHIST_THIS(iface);
779 FIXME("(%p)->(%p)\n", This, pStream);
783 static HRESULT WINAPI PersistHistory_SetPositionCookie(IPersistHistory *iface, DWORD dwPositioncookie)
785 HTMLDocument *This = PERSISTHIST_THIS(iface);
786 FIXME("(%p)->(%x)\n", This, dwPositioncookie);
790 static HRESULT WINAPI PersistHistory_GetPositionCookie(IPersistHistory *iface, DWORD *pdwPositioncookie)
792 HTMLDocument *This = PERSISTHIST_THIS(iface);
793 FIXME("(%p)->(%p)\n", This, pdwPositioncookie);
797 #undef PERSISTHIST_THIS
799 static const IPersistHistoryVtbl PersistHistoryVtbl = {
800 PersistHistory_QueryInterface,
801 PersistHistory_AddRef,
802 PersistHistory_Release,
803 PersistHistory_GetClassID,
804 PersistHistory_LoadHistory,
805 PersistHistory_SaveHistory,
806 PersistHistory_SetPositionCookie,
807 PersistHistory_GetPositionCookie
810 void HTMLDocument_Persist_Init(HTMLDocument *This)
812 This->lpPersistMonikerVtbl = &PersistMonikerVtbl;
813 This->lpPersistFileVtbl = &PersistFileVtbl;
814 This->lpMonikerPropVtbl = &MonikerPropVtbl;
815 This->lpPersistStreamInitVtbl = &PersistStreamInitVtbl;
816 This->lpPersistHistoryVtbl = &PersistHistoryVtbl;