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
21987d3d
Commit
21987d3d
authored
Jan 02, 2007
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 02, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
usp10: Downgrade some more FIXME's to TRACE's.
parent
bb3a903b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
usp10.c
dlls/usp10/usp10.c
+5
-5
No files found.
dlls/usp10/usp10.c
View file @
21987d3d
...
...
@@ -916,7 +916,7 @@ HRESULT WINAPI ScriptBreak(const WCHAR *chars, int count, const SCRIPT_ANALYSIS
{
unsigned
int
i
;
TRACE
(
"(%
p, %d, %p, %p)
\n
"
,
chars
,
count
,
sa
,
la
);
TRACE
(
"(%
s, %d, %p, %p)
\n
"
,
debugstr_wn
(
chars
,
count
)
,
count
,
sa
,
la
);
if
(
!
la
)
return
S_FALSE
;
...
...
@@ -1244,8 +1244,8 @@ HRESULT WINAPI ScriptGetCMap(HDC hdc, SCRIPT_CACHE *psc, const WCHAR *pwcInChars
int
cnt
;
HRESULT
hr
;
FIXME
(
"(%p,%p,%s,%d,0x%x,%p): semi-stub
\n
"
,
hdc
,
psc
,
debugstr_wn
(
pwcInChars
,
cChars
),
cChars
,
dwFlags
,
pwOutGlyphs
);
TRACE
(
"(%p,%p,%s,%d,0x%x,%p)
\n
"
,
hdc
,
psc
,
debugstr_wn
(
pwcInChars
,
cChars
),
cChars
,
dwFlags
,
pwOutGlyphs
);
if
((
hr
=
get_script_cache
(
hdc
,
psc
)))
return
hr
;
...
...
@@ -1276,7 +1276,7 @@ HRESULT WINAPI ScriptTextOut(const HDC hdc, SCRIPT_CACHE *psc, int x, int y, UIN
{
HRESULT
hr
;
TRACE
(
"(%p, %p, %d, %d, %04x, %p, %p, %p, %d, %p, %d, %p, %p, %p)
: stub
\n
"
,
TRACE
(
"(%p, %p, %d, %d, %04x, %p, %p, %p, %d, %p, %d, %p, %p, %p)
\n
"
,
hdc
,
psc
,
x
,
y
,
fuOptions
,
lprc
,
psa
,
pwcReserved
,
iReserved
,
pwGlyphs
,
cGlyphs
,
piAdvance
,
piJustify
,
pGoffset
);
...
...
@@ -1377,7 +1377,7 @@ HRESULT WINAPI ScriptLayout(int runs, const BYTE *level, int *vistolog, int *log
{
int
i
,
j
=
runs
-
1
,
k
=
0
;
FIXME
(
"(%d, %p, %p, %p): stub
\n
"
,
runs
,
level
,
vistolog
,
logtovis
);
TRACE
(
"(%d, %p, %p, %p)
\n
"
,
runs
,
level
,
vistolog
,
logtovis
);
if
(
!
level
||
(
!
vistolog
&&
!
logtovis
))
return
E_INVALIDARG
;
...
...
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