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
dc0cfe77
Commit
dc0cfe77
authored
Sep 29, 2006
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 29, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Fix the case of the BINDINFO.cbstgmedData field. Fixes the htmldoc test…
urlmon: Fix the case of the BINDINFO.cbstgmedData field. Fixes the htmldoc test compilation on Windows.
parent
ceb06a2f
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
8 deletions
+8
-8
navigate.c
dlls/mshtml/navigate.c
+1
-1
persist.c
dlls/mshtml/persist.c
+1
-1
htmldoc.c
dlls/mshtml/tests/htmldoc.c
+1
-1
navigate.c
dlls/shdocvw/navigate.c
+3
-3
binding.c
dlls/urlmon/binding.c
+1
-1
urlmon.idl
include/urlmon.idl
+1
-1
No files found.
dlls/mshtml/navigate.c
View file @
dc0cfe77
...
...
@@ -364,7 +364,7 @@ static HRESULT WINAPI BindStatusCallback_GetBindInfo(IBindStatusCallback *iface,
memset
(
pbindinfo
,
0
,
size
);
pbindinfo
->
cbSize
=
size
;
pbindinfo
->
cb
S
tgmedData
=
This
->
post_data_len
;
pbindinfo
->
cb
s
tgmedData
=
This
->
post_data_len
;
pbindinfo
->
dwCodePage
=
CP_UTF8
;
pbindinfo
->
dwOptions
=
0x80000
;
...
...
dlls/mshtml/persist.c
View file @
dc0cfe77
...
...
@@ -118,7 +118,7 @@ static nsIInputStream *get_post_data_stream(IBindCtx *bctx)
hres
=
IBindStatusCallback_GetBindInfo
(
callback
,
&
bindf
,
&
bindinfo
);
if
(
SUCCEEDED
(
hres
)
&&
bindinfo
.
dwBindVerb
==
BINDVERB_POST
)
post_len
=
bindinfo
.
cb
S
tgmedData
;
post_len
=
bindinfo
.
cb
s
tgmedData
;
if
(
headers_len
||
post_len
)
{
int
len
=
headers_len
?
headers_len
-
1
:
0
;
...
...
dlls/mshtml/tests/htmldoc.c
View file @
dc0cfe77
...
...
@@ -447,7 +447,7 @@ static HRESULT WINAPI Moniker_BindToStorage(IMoniker *iface, IBindCtx *pbc, IMon
ok
(
bindinfo
.
grfBindInfoF
==
0
,
"bindinfo.grfBinfInfoF=%08lx
\n
"
,
bindinfo
.
grfBindInfoF
);
ok
(
bindinfo
.
dwBindVerb
==
0
,
"bindinfo.dwBindVerb=%ld
\n
"
,
bindinfo
.
dwBindVerb
);
ok
(
bindinfo
.
szCustomVerb
==
0
,
"bindinfo.szCustomVerb=%p
\n
"
,
bindinfo
.
szCustomVerb
);
ok
(
bindinfo
.
cb
StgmedData
==
0
,
"bindinfo.cbStgmedData=%ld
\n
"
,
bindinfo
.
cbS
tgmedData
);
ok
(
bindinfo
.
cb
stgmedData
==
0
,
"bindinfo.cbstgmedData=%ld
\n
"
,
bindinfo
.
cbs
tgmedData
);
ok
(
bindinfo
.
dwOptions
==
0x80000
,
"bindinfo.dwOptions=%lx
\n
"
,
bindinfo
.
dwOptions
);
ok
(
bindinfo
.
dwOptionsFlags
==
0
,
"bindinfo.dwOptionsFlags=%ld
\n
"
,
bindinfo
.
dwOptionsFlags
);
/* TODO: test dwCodePage */
...
...
dlls/shdocvw/navigate.c
View file @
dc0cfe77
...
...
@@ -79,7 +79,7 @@ static void dump_BINDINFO(BINDINFO *bi)
bi
->
dwBindVerb
>
BINDVERB_CUSTOM
?
"unknown"
:
BINDVERB_str
[
bi
->
dwBindVerb
],
debugstr_w
(
bi
->
szCustomVerb
),
bi
->
cb
S
tgmedData
,
bi
->
dwOptions
,
bi
->
dwOptionsFlags
,
bi
->
dwCodePage
,
bi
->
cb
s
tgmedData
,
bi
->
dwOptions
,
bi
->
dwOptionsFlags
,
bi
->
dwCodePage
,
bi
->
securityAttributes
.
nLength
,
bi
->
securityAttributes
.
lpSecurityDescriptor
,
bi
->
securityAttributes
.
bInheritHandle
,
...
...
@@ -195,7 +195,7 @@ static HRESULT WINAPI BindStatusCallback_GetBindInfo(IBindStatusCallback *iface,
memset
(
pbindinfo
,
0
,
sizeof
(
BINDINFO
));
pbindinfo
->
cbSize
=
sizeof
(
BINDINFO
);
pbindinfo
->
cb
S
tgmedData
=
This
->
post_data_len
;
pbindinfo
->
cb
s
tgmedData
=
This
->
post_data_len
;
if
(
This
->
post_data
)
{
pbindinfo
->
dwBindVerb
=
BINDVERB_POST
;
...
...
@@ -539,7 +539,7 @@ HRESULT navigate_hlink(DocHost *This, IMoniker *mon, IBindCtx *bindctx,
hres
=
IBindStatusCallback_GetBindInfo
(
callback
,
&
bindf
,
&
bindinfo
);
dump_BINDINFO
(
&
bindinfo
);
if
(
bindinfo
.
dwBindVerb
==
BINDVERB_POST
)
{
post_data_len
=
bindinfo
.
cb
S
tgmedData
;
post_data_len
=
bindinfo
.
cb
s
tgmedData
;
if
(
post_data_len
)
post_data
=
bindinfo
.
stgmedData
.
u
.
hGlobal
;
}
...
...
dlls/urlmon/binding.c
View file @
dc0cfe77
...
...
@@ -339,7 +339,7 @@ static void dump_BINDINFO(BINDINFO *bi)
bi
->
dwBindVerb
>
BINDVERB_CUSTOM
?
"unknown"
:
BINDVERB_str
[
bi
->
dwBindVerb
],
debugstr_w
(
bi
->
szCustomVerb
),
bi
->
cb
S
tgmedData
,
bi
->
dwOptions
,
bi
->
dwOptionsFlags
,
bi
->
dwCodePage
,
bi
->
cb
s
tgmedData
,
bi
->
dwOptions
,
bi
->
dwOptionsFlags
,
bi
->
dwCodePage
,
bi
->
securityAttributes
.
nLength
,
bi
->
securityAttributes
.
lpSecurityDescriptor
,
bi
->
securityAttributes
.
bInheritHandle
,
...
...
include/urlmon.idl
View file @
dc0cfe77
...
...
@@ -131,7 +131,7 @@ interface IBindStatusCallback : IUnknown
DWORD
grfBindInfoF
;
DWORD
dwBindVerb
;
LPWSTR
szCustomVerb
;
DWORD
cb
S
tgmedData
;
DWORD
cb
s
tgmedData
;
DWORD
dwOptions
;
DWORD
dwOptionsFlags
;
DWORD
dwCodePage
;
...
...
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