Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
f071d9b3
Commit
f071d9b3
authored
Jan 18, 2013
by
Jacek Caban
Committed by
Alexandre Julliard
Jan 18, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Get rid of PRInt16 type.
parent
cf2a24df
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
nsiface.idl
dlls/mshtml/nsiface.idl
+1
-2
txtrange.c
dlls/mshtml/txtrange.c
+3
-3
No files found.
dlls/mshtml/nsiface.idl
View file @
f071d9b3
...
...
@@ -45,7 +45,6 @@ typedef nsIIDRef nsCIDRef;
typedef
WCHAR
PRUnichar
;
typedef
ULONG
PRUint32
;
typedef
WORD
PRUint16
;
typedef
INT16
PRInt16
;
typedef
BYTE
PRUint8
;
typedef
LONGLONG
PRInt64
;
typedef
ULONGLONG
PRUint64
;
...
...
@@ -55,7 +54,7 @@ typedef ULONGLONG PRUint64;
*
more
similar
to
original
declarations
.
Note
that
it
's only a widl trick, we can'
t
*
use
stdint
.
h
types
in
C
.
*/
#
define
int16_t
PRInt16
#
define
int16_t
short
#
define
int32_t
LONG
#
define
int64_t
PRInt64
...
...
dlls/mshtml/txtrange.c
View file @
f071d9b3
...
...
@@ -1236,7 +1236,7 @@ static HRESULT WINAPI HTMLTxtRange_inRange(IHTMLTxtRange *iface, IHTMLTxtRange *
{
HTMLTxtRange
*
This
=
impl_from_IHTMLTxtRange
(
iface
);
HTMLTxtRange
*
src_range
;
PRInt16
nsret
=
0
;
short
nsret
=
0
;
nsresult
nsres
;
TRACE
(
"(%p)->(%p %p)
\n
"
,
This
,
Range
,
InRange
);
...
...
@@ -1267,7 +1267,7 @@ static HRESULT WINAPI HTMLTxtRange_isEqual(IHTMLTxtRange *iface, IHTMLTxtRange *
{
HTMLTxtRange
*
This
=
impl_from_IHTMLTxtRange
(
iface
);
HTMLTxtRange
*
src_range
;
PRInt16
nsret
=
0
;
short
nsret
=
0
;
nsresult
nsres
;
TRACE
(
"(%p)->(%p %p)
\n
"
,
This
,
Range
,
IsEqual
);
...
...
@@ -1599,7 +1599,7 @@ static HRESULT WINAPI HTMLTxtRange_compareEndPoints(IHTMLTxtRange *iface, BSTR h
{
HTMLTxtRange
*
This
=
impl_from_IHTMLTxtRange
(
iface
);
HTMLTxtRange
*
src_range
;
PRInt16
nsret
=
0
;
short
nsret
=
0
;
int
nscmpt
;
nsresult
nsres
;
...
...
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