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
7867ce85
Commit
7867ce85
authored
Jan 23, 2013
by
Jacek Caban
Committed by
Alexandre Julliard
Jan 23, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Get rid of PRUint64 type.
parent
07e72de9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
navigate.c
dlls/mshtml/navigate.c
+2
-2
nsiface.idl
dlls/mshtml/nsiface.idl
+1
-2
No files found.
dlls/mshtml/navigate.c
View file @
7867ce85
...
...
@@ -138,7 +138,7 @@ static nsresult NSAPI nsInputStream_Close(nsIInputStream *iface)
return
NS_ERROR_NOT_IMPLEMENTED
;
}
static
nsresult
NSAPI
nsInputStream_Available
(
nsIInputStream
*
iface
,
PRUint
64
*
_retval
)
static
nsresult
NSAPI
nsInputStream_Available
(
nsIInputStream
*
iface
,
UINT
64
*
_retval
)
{
nsProtocolStream
*
This
=
impl_from_nsIInputStream
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
_retval
);
...
...
@@ -1001,7 +1001,7 @@ HRESULT bind_mon_to_wstr(HTMLInnerWindow *window, IMoniker *mon, WCHAR **ret)
static
HRESULT
read_post_data_stream
(
nsChannelBSC
*
This
,
nsChannel
*
nschannel
)
{
PRUint
64
available
=
0
;
UINT
64
available
=
0
;
UINT32
data_len
=
0
;
char
*
data
,
*
post_data
;
nsresult
nsres
;
...
...
dlls/mshtml/nsiface.idl
View file @
7867ce85
...
...
@@ -43,7 +43,6 @@ typedef REFIID nsIIDRef;
typedef
nsIIDRef
nsCIDRef
;
typedef
WCHAR
PRUnichar
;
typedef
ULONGLONG
PRUint64
;
/*
*
Mozilla
uses
stdint
.
h
types
for
its
headers
.
Following
defines
make
this
IDL
file
...
...
@@ -57,7 +56,7 @@ typedef ULONGLONG PRUint64;
#
define
uint8_t
UINT8
#
define
uint16_t
UINT16
#
define
uint32_t
UINT32
#
define
uint64_t
PRUint
64
#
define
uint64_t
UINT
64
typedef
uint64_t
DOMTimeStamp
;
typedef
uint32_t
nsLoadFlags
;
...
...
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