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
2d83c1d7
Commit
2d83c1d7
authored
Jun 03, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jun 03, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Replace long with LONG.
This are internal helper functions; the API functions that use them already use LONG.
parent
2b6c4c0b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
txtrange.c
dlls/mshtml/txtrange.c
+9
-9
No files found.
dlls/mshtml/txtrange.c
View file @
2d83c1d7
...
...
@@ -804,11 +804,11 @@ static WCHAR prev_char(HTMLTxtRange *This, const dompos_t *pos, dompos_t *new_po
return
0
;
}
static
long
move_next_chars
(
long
cnt
,
const
dompos_t
*
pos
,
BOOL
col
,
const
dompos_t
*
bound_pos
,
static
LONG
move_next_chars
(
LONG
cnt
,
const
dompos_t
*
pos
,
BOOL
col
,
const
dompos_t
*
bound_pos
,
BOOL
*
bounded
,
dompos_t
*
new_pos
)
{
dompos_t
iter
,
tmp
;
long
ret
=
0
;
LONG
ret
=
0
;
WCHAR
c
;
if
(
bounded
)
...
...
@@ -843,11 +843,11 @@ static long move_next_chars(long cnt, const dompos_t *pos, BOOL col, const dompo
return
ret
;
}
static
long
move_prev_chars
(
HTMLTxtRange
*
This
,
long
cnt
,
const
dompos_t
*
pos
,
BOOL
end
,
static
LONG
move_prev_chars
(
HTMLTxtRange
*
This
,
LONG
cnt
,
const
dompos_t
*
pos
,
BOOL
end
,
const
dompos_t
*
bound_pos
,
BOOL
*
bounded
,
dompos_t
*
new_pos
)
{
dompos_t
iter
,
tmp
;
long
ret
=
0
;
LONG
ret
=
0
;
BOOL
prev_eq
=
FALSE
;
WCHAR
c
;
...
...
@@ -882,7 +882,7 @@ static long move_prev_chars(HTMLTxtRange *This, long cnt, const dompos_t *pos, B
return
ret
;
}
static
long
find_prev_space
(
HTMLTxtRange
*
This
,
const
dompos_t
*
pos
,
BOOL
first_space
,
dompos_t
*
ret
)
static
LONG
find_prev_space
(
HTMLTxtRange
*
This
,
const
dompos_t
*
pos
,
BOOL
first_space
,
dompos_t
*
ret
)
{
dompos_t
iter
,
tmp
;
WCHAR
c
;
...
...
@@ -946,10 +946,10 @@ static int find_word_end(const dompos_t *pos, dompos_t *ret)
return
cnt
;
}
static
long
move_next_words
(
long
cnt
,
const
dompos_t
*
pos
,
dompos_t
*
new_pos
)
static
LONG
move_next_words
(
LONG
cnt
,
const
dompos_t
*
pos
,
dompos_t
*
new_pos
)
{
dompos_t
iter
,
tmp
;
long
ret
=
0
;
LONG
ret
=
0
;
WCHAR
c
;
c
=
get_pos_char
(
pos
);
...
...
@@ -974,10 +974,10 @@ static long move_next_words(long cnt, const dompos_t *pos, dompos_t *new_pos)
return
ret
;
}
static
long
move_prev_words
(
HTMLTxtRange
*
This
,
long
cnt
,
const
dompos_t
*
pos
,
dompos_t
*
new_pos
)
static
LONG
move_prev_words
(
HTMLTxtRange
*
This
,
LONG
cnt
,
const
dompos_t
*
pos
,
dompos_t
*
new_pos
)
{
dompos_t
iter
,
tmp
;
long
ret
=
0
;
LONG
ret
=
0
;
iter
=
*
pos
;
dompos_addref
(
&
iter
);
...
...
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