webservices: Implement the Message Framing Protocol.
[wine.git] / dlls / mshtml / htmlscript.h
blobaf9192fc6389fdf9a83dfc3d6fc4a373edba7664
1 /*
2 * Copyright 2012 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 struct HTMLScriptElement {
20 HTMLElement element;
22 IHTMLScriptElement IHTMLScriptElement_iface;
24 nsIDOMHTMLScriptElement *nsscript;
25 BOOL parsed;
26 BOOL parse_on_bind;
27 BOOL pending_readystatechange_event;
28 READYSTATE readystate;
29 WCHAR *src_text; /* sctipt text downloaded from src */
30 BSCallback *binding; /* weak reference to current binding */
33 typedef struct {
34 struct list entry;
35 HTMLScriptElement *script;
36 } script_queue_entry_t;
38 HRESULT script_elem_from_nsscript(HTMLDocumentNode*,nsIDOMHTMLScriptElement*,HTMLScriptElement**) DECLSPEC_HIDDEN;
39 void bind_event_scripts(HTMLDocumentNode*) DECLSPEC_HIDDEN;
40 HRESULT load_script(HTMLScriptElement*,const WCHAR*,BOOL) DECLSPEC_HIDDEN;
42 void release_script_hosts(HTMLInnerWindow*) DECLSPEC_HIDDEN;
43 void connect_scripts(HTMLInnerWindow*) DECLSPEC_HIDDEN;
44 void doc_insert_script(HTMLInnerWindow*,HTMLScriptElement*,BOOL) DECLSPEC_HIDDEN;
45 IDispatch *script_parse_event(HTMLInnerWindow*,LPCWSTR) DECLSPEC_HIDDEN;
46 HRESULT exec_script(HTMLInnerWindow*,const WCHAR*,const WCHAR*,VARIANT*) DECLSPEC_HIDDEN;
47 void set_script_mode(HTMLOuterWindow*,SCRIPTMODE) DECLSPEC_HIDDEN;
48 BOOL find_global_prop(HTMLInnerWindow*,BSTR,DWORD,ScriptHost**,DISPID*) DECLSPEC_HIDDEN;
49 IDispatch *get_script_disp(ScriptHost*) DECLSPEC_HIDDEN;