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
bf92d683
Commit
bf92d683
authored
Nov 19, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Nov 20, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
usp10: Sign-compare warnings fix.
parent
5c79a9f4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
usp10.c
dlls/usp10/usp10.c
+8
-6
No files found.
dlls/usp10/usp10.c
View file @
bf92d683
...
...
@@ -1030,7 +1030,7 @@ HRESULT WINAPI ScriptXtoCP(int iX,
*/
HRESULT
WINAPI
ScriptBreak
(
const
WCHAR
*
chars
,
int
count
,
const
SCRIPT_ANALYSIS
*
sa
,
SCRIPT_LOGATTR
*
la
)
{
unsigned
int
i
;
int
i
;
TRACE
(
"(%s, %d, %p, %p)
\n
"
,
debugstr_wn
(
chars
,
count
),
count
,
sa
,
la
);
...
...
@@ -1220,7 +1220,8 @@ complex_ranges[] =
*/
HRESULT
WINAPI
ScriptIsComplex
(
const
WCHAR
*
chars
,
int
len
,
DWORD
flag
)
{
unsigned
int
i
,
j
;
int
i
;
unsigned
int
j
;
TRACE
(
"(%s,%d,0x%x)
\n
"
,
debugstr_wn
(
chars
,
len
),
len
,
flag
);
...
...
@@ -1336,7 +1337,7 @@ HRESULT WINAPI ScriptPlace(HDC hdc, SCRIPT_CACHE *psc, const WORD *pwGlyphs,
SCRIPT_ANALYSIS
*
psa
,
int
*
piAdvance
,
GOFFSET
*
pGoffset
,
ABC
*
pABC
)
{
HRESULT
hr
;
unsigned
int
i
;
int
i
;
TRACE
(
"(%p, %p, %p, %s, %d, %p, %p, %p)
\n
"
,
hdc
,
psc
,
pwGlyphs
,
debugstr_wn
(
pwGlyphs
,
cGlyphs
),
cGlyphs
,
psva
,
psa
,
piAdvance
);
...
...
@@ -1400,7 +1401,7 @@ HRESULT WINAPI ScriptGetCMap(HDC hdc, SCRIPT_CACHE *psc, const WCHAR *pwcInChars
int
cChars
,
DWORD
dwFlags
,
WORD
*
pwOutGlyphs
)
{
HRESULT
hr
;
unsigned
int
i
;
int
i
;
TRACE
(
"(%p,%p,%s,%d,0x%x,%p)
\n
"
,
hdc
,
psc
,
debugstr_wn
(
pwcInChars
,
cChars
),
cChars
,
dwFlags
,
pwOutGlyphs
);
...
...
@@ -1642,7 +1643,7 @@ HRESULT WINAPI ScriptStringValidate(SCRIPT_STRING_ANALYSIS ssa)
*/
const
SIZE
*
WINAPI
ScriptString_pSize
(
SCRIPT_STRING_ANALYSIS
ssa
)
{
unsigned
int
i
,
j
;
int
i
,
j
;
StringAnalysis
*
analysis
=
ssa
;
TRACE
(
"(%p)
\n
"
,
ssa
);
...
...
@@ -1721,7 +1722,8 @@ const int * WINAPI ScriptString_pcOutChars(SCRIPT_STRING_ANALYSIS ssa)
*/
HRESULT
WINAPI
ScriptStringGetOrder
(
SCRIPT_STRING_ANALYSIS
ssa
,
UINT
*
order
)
{
unsigned
int
i
,
j
,
k
;
int
i
,
j
;
unsigned
int
k
;
StringAnalysis
*
analysis
=
ssa
;
TRACE
(
"(%p)
\n
"
,
ssa
);
...
...
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