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
c8bb048b
Commit
c8bb048b
authored
Mar 23, 2008
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 24, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Abstract BSCallback implementation.
parent
6738db5a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
mshtml_private.h
dlls/mshtml/mshtml_private.h
+2
-2
navigate.c
dlls/mshtml/navigate.c
+0
-0
task.c
dlls/mshtml/task.c
+2
-2
No files found.
dlls/mshtml/mshtml_private.h
View file @
c8bb048b
...
...
@@ -54,7 +54,7 @@
typedef
struct
HTMLDOMNode
HTMLDOMNode
;
typedef
struct
ConnectionPoint
ConnectionPoint
;
typedef
struct
BSCallback
BSCallback
;
typedef
struct
BSCallback
nsChannelBSC
;
typedef
struct
nsChannelBSC
nsChannelBSC
;
typedef
struct
{
const
IHTMLWindow2Vtbl
*
lpHTMLWindow2Vtbl
;
...
...
@@ -479,7 +479,7 @@ typedef struct task_t {
TASK_START_BINDING
}
task_id
;
BSCallback
*
bscallback
;
nsChannelBSC
*
bscallback
;
struct
task_t
*
next
;
}
task_t
;
...
...
dlls/mshtml/navigate.c
View file @
c8bb048b
This diff is collapsed.
Click to expand it.
dlls/mshtml/task.c
View file @
c8bb048b
...
...
@@ -215,7 +215,7 @@ static void task_start_binding(HTMLDocument *doc, BSCallback *bscallback)
{
if
(
doc
)
start_binding
(
doc
,
bscallback
,
NULL
);
I
BindStatusCallback_Release
(
STATUSCLB
(
bscallback
)
);
I
Unknown_Release
((
IUnknown
*
)
bscallback
);
}
static
void
process_task
(
task_t
*
task
)
...
...
@@ -231,7 +231,7 @@ static void process_task(task_t *task)
set_progress
(
task
->
doc
);
break
;
case
TASK_START_BINDING
:
task_start_binding
(
task
->
doc
,
task
->
bscallback
);
task_start_binding
(
task
->
doc
,
(
BSCallback
*
)
task
->
bscallback
);
break
;
default:
ERR
(
"Wrong task_id %d
\n
"
,
task
->
task_id
);
...
...
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