Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
51b701c3
Commit
51b701c3
authored
Oct 16, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 16, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Moved HTMLScriptElement declaration to separated header.
parent
c26b6356
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
46 additions
and
20 deletions
+46
-20
htmlevent.c
dlls/mshtml/htmlevent.c
+1
-0
htmlscript.c
dlls/mshtml/htmlscript.c
+1
-0
htmlscript.h
dlls/mshtml/htmlscript.h
+38
-0
htmlwindow.c
dlls/mshtml/htmlwindow.c
+1
-0
mshtml_private.h
dlls/mshtml/mshtml_private.h
+0
-20
mutation.c
dlls/mshtml/mutation.c
+1
-0
navigate.c
dlls/mshtml/navigate.c
+1
-0
nsevents.c
dlls/mshtml/nsevents.c
+1
-0
persist.c
dlls/mshtml/persist.c
+1
-0
script.c
dlls/mshtml/script.c
+1
-0
No files found.
dlls/mshtml/htmlevent.c
View file @
51b701c3
...
@@ -28,6 +28,7 @@
...
@@ -28,6 +28,7 @@
#include "mshtml_private.h"
#include "mshtml_private.h"
#include "htmlevent.h"
#include "htmlevent.h"
#include "htmlscript.h"
#include "wine/debug.h"
#include "wine/debug.h"
...
...
dlls/mshtml/htmlscript.c
View file @
51b701c3
...
@@ -29,6 +29,7 @@
...
@@ -29,6 +29,7 @@
#include "wine/debug.h"
#include "wine/debug.h"
#include "mshtml_private.h"
#include "mshtml_private.h"
#include "htmlscript.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
mshtml
);
WINE_DEFAULT_DEBUG_CHANNEL
(
mshtml
);
...
...
dlls/mshtml/htmlscript.h
0 → 100644
View file @
51b701c3
/*
* Copyright 2012 Jacek Caban for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
typedef
struct
{
HTMLElement
element
;
IHTMLScriptElement
IHTMLScriptElement_iface
;
nsIDOMHTMLScriptElement
*
nsscript
;
BOOL
parsed
;
}
HTMLScriptElement
;
HRESULT
script_elem_from_nsscript
(
HTMLDocumentNode
*
,
nsIDOMHTMLScriptElement
*
,
HTMLScriptElement
**
)
DECLSPEC_HIDDEN
;
void
bind_event_scripts
(
HTMLDocumentNode
*
)
DECLSPEC_HIDDEN
;
void
release_script_hosts
(
HTMLInnerWindow
*
)
DECLSPEC_HIDDEN
;
void
connect_scripts
(
HTMLInnerWindow
*
)
DECLSPEC_HIDDEN
;
void
doc_insert_script
(
HTMLInnerWindow
*
,
HTMLScriptElement
*
)
DECLSPEC_HIDDEN
;
IDispatch
*
script_parse_event
(
HTMLInnerWindow
*
,
LPCWSTR
)
DECLSPEC_HIDDEN
;
HRESULT
exec_script
(
HTMLInnerWindow
*
,
const
WCHAR
*
,
const
WCHAR
*
,
VARIANT
*
)
DECLSPEC_HIDDEN
;
void
set_script_mode
(
HTMLOuterWindow
*
,
SCRIPTMODE
)
DECLSPEC_HIDDEN
;
BOOL
find_global_prop
(
HTMLInnerWindow
*
,
BSTR
,
DWORD
,
ScriptHost
**
,
DISPID
*
)
DECLSPEC_HIDDEN
;
IDispatch
*
get_script_disp
(
ScriptHost
*
)
DECLSPEC_HIDDEN
;
dlls/mshtml/htmlwindow.c
View file @
51b701c3
...
@@ -36,6 +36,7 @@
...
@@ -36,6 +36,7 @@
#include "mshtml_private.h"
#include "mshtml_private.h"
#include "htmlevent.h"
#include "htmlevent.h"
#include "htmlscript.h"
#include "binding.h"
#include "binding.h"
#include "resource.h"
#include "resource.h"
...
...
dlls/mshtml/mshtml_private.h
View file @
51b701c3
...
@@ -743,18 +743,6 @@ void init_binding_ui(HTMLDocumentObj*) DECLSPEC_HIDDEN;
...
@@ -743,18 +743,6 @@ void init_binding_ui(HTMLDocumentObj*) DECLSPEC_HIDDEN;
void
HTMLDocumentNode_SecMgr_Init
(
HTMLDocumentNode
*
)
DECLSPEC_HIDDEN
;
void
HTMLDocumentNode_SecMgr_Init
(
HTMLDocumentNode
*
)
DECLSPEC_HIDDEN
;
typedef
struct
{
HTMLElement
element
;
IHTMLScriptElement
IHTMLScriptElement_iface
;
nsIDOMHTMLScriptElement
*
nsscript
;
BOOL
parsed
;
}
HTMLScriptElement
;
HRESULT
script_elem_from_nsscript
(
HTMLDocumentNode
*
,
nsIDOMHTMLScriptElement
*
,
HTMLScriptElement
**
)
DECLSPEC_HIDDEN
;
void
bind_event_scripts
(
HTMLDocumentNode
*
)
DECLSPEC_HIDDEN
;
HRESULT
HTMLCurrentStyle_Create
(
HTMLElement
*
,
IHTMLCurrentStyle
**
)
DECLSPEC_HIDDEN
;
HRESULT
HTMLCurrentStyle_Create
(
HTMLElement
*
,
IHTMLCurrentStyle
**
)
DECLSPEC_HIDDEN
;
void
ConnectionPoint_Init
(
ConnectionPoint
*
,
ConnectionPointContainer
*
,
REFIID
,
cp_static_data_t
*
)
DECLSPEC_HIDDEN
;
void
ConnectionPoint_Init
(
ConnectionPoint
*
,
ConnectionPointContainer
*
,
REFIID
,
cp_static_data_t
*
)
DECLSPEC_HIDDEN
;
...
@@ -918,14 +906,6 @@ HRESULT get_elem(HTMLDocumentNode*,nsIDOMElement*,HTMLElement**) DECLSPEC_HIDDEN
...
@@ -918,14 +906,6 @@ HRESULT get_elem(HTMLDocumentNode*,nsIDOMElement*,HTMLElement**) DECLSPEC_HIDDEN
HTMLElement
*
unsafe_impl_from_IHTMLElement
(
IHTMLElement
*
)
DECLSPEC_HIDDEN
;
HTMLElement
*
unsafe_impl_from_IHTMLElement
(
IHTMLElement
*
)
DECLSPEC_HIDDEN
;
void
release_script_hosts
(
HTMLInnerWindow
*
)
DECLSPEC_HIDDEN
;
void
connect_scripts
(
HTMLInnerWindow
*
)
DECLSPEC_HIDDEN
;
void
doc_insert_script
(
HTMLInnerWindow
*
,
HTMLScriptElement
*
)
DECLSPEC_HIDDEN
;
IDispatch
*
script_parse_event
(
HTMLInnerWindow
*
,
LPCWSTR
)
DECLSPEC_HIDDEN
;
HRESULT
exec_script
(
HTMLInnerWindow
*
,
const
WCHAR
*
,
const
WCHAR
*
,
VARIANT
*
)
DECLSPEC_HIDDEN
;
void
set_script_mode
(
HTMLOuterWindow
*
,
SCRIPTMODE
)
DECLSPEC_HIDDEN
;
BOOL
find_global_prop
(
HTMLInnerWindow
*
,
BSTR
,
DWORD
,
ScriptHost
**
,
DISPID
*
)
DECLSPEC_HIDDEN
;
IDispatch
*
get_script_disp
(
ScriptHost
*
)
DECLSPEC_HIDDEN
;
HRESULT
search_window_props
(
HTMLInnerWindow
*
,
BSTR
,
DWORD
,
DISPID
*
)
DECLSPEC_HIDDEN
;
HRESULT
search_window_props
(
HTMLInnerWindow
*
,
BSTR
,
DWORD
,
DISPID
*
)
DECLSPEC_HIDDEN
;
HRESULT
get_frame_by_name
(
HTMLOuterWindow
*
,
const
WCHAR
*
,
BOOL
,
HTMLOuterWindow
**
)
DECLSPEC_HIDDEN
;
HRESULT
get_frame_by_name
(
HTMLOuterWindow
*
,
const
WCHAR
*
,
BOOL
,
HTMLOuterWindow
**
)
DECLSPEC_HIDDEN
;
HRESULT
get_doc_elem_by_id
(
HTMLDocumentNode
*
,
const
WCHAR
*
,
HTMLElement
**
)
DECLSPEC_HIDDEN
;
HRESULT
get_doc_elem_by_id
(
HTMLDocumentNode
*
,
const
WCHAR
*
,
HTMLElement
**
)
DECLSPEC_HIDDEN
;
...
...
dlls/mshtml/mutation.c
View file @
51b701c3
...
@@ -30,6 +30,7 @@
...
@@ -30,6 +30,7 @@
#include "shlguid.h"
#include "shlguid.h"
#include "mshtml_private.h"
#include "mshtml_private.h"
#include "htmlscript.h"
#include "htmlevent.h"
#include "htmlevent.h"
#include "wine/debug.h"
#include "wine/debug.h"
...
...
dlls/mshtml/navigate.c
View file @
51b701c3
...
@@ -40,6 +40,7 @@
...
@@ -40,6 +40,7 @@
#include "wine/debug.h"
#include "wine/debug.h"
#include "mshtml_private.h"
#include "mshtml_private.h"
#include "htmlscript.h"
#include "binding.h"
#include "binding.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
mshtml
);
WINE_DEFAULT_DEBUG_CHANNEL
(
mshtml
);
...
...
dlls/mshtml/nsevents.c
View file @
51b701c3
...
@@ -32,6 +32,7 @@
...
@@ -32,6 +32,7 @@
#include "wine/debug.h"
#include "wine/debug.h"
#include "mshtml_private.h"
#include "mshtml_private.h"
#include "htmlscript.h"
#include "htmlevent.h"
#include "htmlevent.h"
#include "resource.h"
#include "resource.h"
...
...
dlls/mshtml/persist.c
View file @
51b701c3
...
@@ -38,6 +38,7 @@
...
@@ -38,6 +38,7 @@
#include "wine/debug.h"
#include "wine/debug.h"
#include "mshtml_private.h"
#include "mshtml_private.h"
#include "htmlscript.h"
#include "htmlevent.h"
#include "htmlevent.h"
#include "binding.h"
#include "binding.h"
#include "resource.h"
#include "resource.h"
...
...
dlls/mshtml/script.c
View file @
51b701c3
...
@@ -33,6 +33,7 @@
...
@@ -33,6 +33,7 @@
#include "wine/debug.h"
#include "wine/debug.h"
#include "mshtml_private.h"
#include "mshtml_private.h"
#include "htmlscript.h"
#include "pluginhost.h"
#include "pluginhost.h"
#include "htmlevent.h"
#include "htmlevent.h"
#include "binding.h"
#include "binding.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment