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
a7caae95
Commit
a7caae95
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: Move BSCallback declaration to navigate.c.
parent
5a04f526
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
36 deletions
+36
-36
mshtml_private.h
dlls/mshtml/mshtml_private.h
+0
-36
navigate.c
dlls/mshtml/navigate.c
+36
-0
No files found.
dlls/mshtml/mshtml_private.h
View file @
a7caae95
...
...
@@ -235,42 +235,6 @@ typedef struct {
}
nsChannel
;
typedef
struct
{
const
nsIInputStreamVtbl
*
lpInputStreamVtbl
;
LONG
ref
;
char
buf
[
1024
];
DWORD
buf_size
;
}
nsProtocolStream
;
struct
BSCallback
{
const
IBindStatusCallbackVtbl
*
lpBindStatusCallbackVtbl
;
const
IServiceProviderVtbl
*
lpServiceProviderVtbl
;
const
IHttpNegotiate2Vtbl
*
lpHttpNegotiate2Vtbl
;
const
IInternetBindInfoVtbl
*
lpInternetBindInfoVtbl
;
LONG
ref
;
LPWSTR
headers
;
HGLOBAL
post_data
;
ULONG
post_data_len
;
ULONG
readed
;
nsChannel
*
nschannel
;
nsIStreamListener
*
nslistener
;
nsISupports
*
nscontext
;
IMoniker
*
mon
;
IBinding
*
binding
;
HTMLDocument
*
doc
;
nsProtocolStream
*
nsstream
;
struct
list
entry
;
};
typedef
struct
{
HRESULT
(
*
qi
)(
HTMLDOMNode
*
,
REFIID
,
void
**
);
void
(
*
destructor
)(
HTMLDOMNode
*
);
}
NodeImplVtbl
;
...
...
dlls/mshtml/navigate.c
View file @
a7caae95
...
...
@@ -41,8 +41,44 @@ WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
#define CONTENT_LENGTH "Content-Length"
#define UTF16_STR "utf-16"
typedef
struct
{
const
nsIInputStreamVtbl
*
lpInputStreamVtbl
;
LONG
ref
;
char
buf
[
1024
];
DWORD
buf_size
;
}
nsProtocolStream
;
#define NSINSTREAM(x) ((nsIInputStream*) &(x)->lpInputStreamVtbl)
struct
BSCallback
{
const
IBindStatusCallbackVtbl
*
lpBindStatusCallbackVtbl
;
const
IServiceProviderVtbl
*
lpServiceProviderVtbl
;
const
IHttpNegotiate2Vtbl
*
lpHttpNegotiate2Vtbl
;
const
IInternetBindInfoVtbl
*
lpInternetBindInfoVtbl
;
LONG
ref
;
LPWSTR
headers
;
HGLOBAL
post_data
;
ULONG
post_data_len
;
ULONG
readed
;
nsChannel
*
nschannel
;
nsIStreamListener
*
nslistener
;
nsISupports
*
nscontext
;
IMoniker
*
mon
;
IBinding
*
binding
;
HTMLDocument
*
doc
;
nsProtocolStream
*
nsstream
;
struct
list
entry
;
};
#define NSINSTREAM_THIS(iface) DEFINE_THIS(nsProtocolStream, InputStream, iface)
static
nsresult
NSAPI
nsInputStream_QueryInterface
(
nsIInputStream
*
iface
,
nsIIDRef
riid
,
...
...
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