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
f3cfb89b
Commit
f3cfb89b
authored
Oct 05, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 05, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
usp10: Win64 printf format warning fixes.
parent
d421935d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
Makefile.in
dlls/usp10/Makefile.in
+0
-1
usp10.c
dlls/usp10/usp10.c
+5
-5
No files found.
dlls/usp10/Makefile.in
View file @
f3cfb89b
...
...
@@ -5,7 +5,6 @@ VPATH = @srcdir@
MODULE
=
usp10.dll
IMPORTLIB
=
libusp10.
$(IMPLIBEXT)
IMPORTS
=
gdi32 kernel32
EXTRADEFS
=
-DWINE_NO_LONG_AS_INT
C_SRCS
=
\
usp10.c
...
...
dlls/usp10/usp10.c
View file @
f3cfb89b
...
...
@@ -187,7 +187,7 @@ HRESULT WINAPI ScriptRecordDigitSubstitution(LCID locale, SCRIPT_DIGITSUBSTITUTE
{
DWORD
plgid
,
sub
;
TRACE
(
"0x%
l
x, %p
\n
"
,
locale
,
sds
);
TRACE
(
"0x%x, %p
\n
"
,
locale
,
sds
);
/* This implementation appears to be correct for all languages, but it's
* not clear if sds->DigitSubstitute is ever set to anything except
...
...
@@ -447,7 +447,7 @@ HRESULT WINAPI ScriptStringAnalyse(HDC hdc,
const
BYTE
*
pbInClass
,
SCRIPT_STRING_ANALYSIS
*
pssa
)
{
FIXME
(
"(%p,%p,%d,%d,%d,0x%
l
x,%d,%p,%p,%p,%p,%p,%p): stub
\n
"
,
FIXME
(
"(%p,%p,%d,%d,%d,0x%x,%d,%p,%p,%p,%p,%p,%p): stub
\n
"
,
hdc
,
pString
,
cString
,
cGlyphs
,
iCharset
,
dwFlags
,
iReqWidth
,
psControl
,
psState
,
piDx
,
pTabdef
,
pbInClass
,
pssa
);
if
(
1
>
cString
||
NULL
==
pString
)
{
...
...
@@ -784,7 +784,7 @@ HRESULT WINAPI ScriptIsComplex(const WCHAR *chars, int len, DWORD flag)
{
unsigned
int
i
,
j
;
TRACE
(
"(%s,%d,0x%
l
x)
\n
"
,
debugstr_wn
(
chars
,
len
),
len
,
flag
);
TRACE
(
"(%s,%d,0x%x)
\n
"
,
debugstr_wn
(
chars
,
len
),
len
,
flag
);
for
(
i
=
0
;
i
<
len
;
i
++
)
{
...
...
@@ -958,7 +958,7 @@ HRESULT WINAPI ScriptGetCMap(HDC hdc, SCRIPT_CACHE *psc, const WCHAR *pwcInChars
int
cnt
;
DWORD
hr
;
Scriptcache
*
pScriptcache
;
FIXME
(
"(%p,%p,%s,%d,0x%
lx,%p): semi-stub
\n
"
,
hdc
,
psc
,
debugstr_wn
(
pwcInChars
,
cChars
),
FIXME
(
"(%p,%p,%s,%d,0x%
x,%p): semi-stub
\n
"
,
hdc
,
psc
,
debugstr_wn
(
pwcInChars
,
cChars
),
cChars
,
dwFlags
,
pwOutGlyphs
);
if
(
!
psc
)
...
...
@@ -1031,7 +1031,7 @@ HRESULT WINAPI ScriptTextOut(const HDC hdc, SCRIPT_CACHE *psc, int x, int y, UIN
if
(
hr
)
return
S_OK
;
else
{
FIXME
(
"ExtTextOut returned:=%
l
d
\n
"
,
hr
);
FIXME
(
"ExtTextOut returned:=%d
\n
"
,
hr
);
return
hr
;
}
}
...
...
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