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
dd4dd261
Commit
dd4dd261
authored
Sep 08, 2011
by
Aric Stewart
Committed by
Alexandre Julliard
Sep 09, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
usp10: Respect the presence or absence of the SSA_BREAK flag.
parent
702941ea
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
usp10.c
dlls/usp10/usp10.c
+10
-1
No files found.
dlls/usp10/usp10.c
View file @
dd4dd261
...
...
@@ -324,6 +324,7 @@ typedef struct {
typedef
struct
{
HDC
hdc
;
DWORD
dwFlags
;
BOOL
invalid
;
int
clip_len
;
ScriptCache
*
sc
;
...
...
@@ -931,6 +932,7 @@ HRESULT WINAPI ScriptStringAnalyse(HDC hdc, const void *pString, int cString,
/* FIXME: handle clipping */
analysis
->
clip_len
=
cString
;
analysis
->
hdc
=
hdc
;
analysis
->
dwFlags
=
dwFlags
;
if
(
psState
)
sState
=
*
psState
;
...
...
@@ -959,10 +961,16 @@ HRESULT WINAPI ScriptStringAnalyse(HDC hdc, const void *pString, int cString,
}
if
(
hr
!=
S_OK
)
goto
error
;
if
(
dwFlags
&
SSA_BREAK
)
{
if
((
analysis
->
logattrs
=
heap_alloc
(
sizeof
(
SCRIPT_LOGATTR
)
*
cString
)))
ScriptBreak
(
pString
,
cString
,
(
SCRIPT_STRING_ANALYSIS
)
analysis
,
analysis
->
logattrs
);
{
for
(
i
=
0
;
i
<
analysis
->
numItems
;
i
++
)
ScriptBreak
(
&
((
LPWSTR
)
pString
)[
analysis
->
pItem
[
i
].
iCharPos
],
analysis
->
pItem
[
i
+
1
].
iCharPos
-
analysis
->
pItem
[
i
].
iCharPos
,
&
analysis
->
pItem
[
i
].
a
,
&
analysis
->
logattrs
[
analysis
->
pItem
[
i
].
iCharPos
]);
}
else
goto
error
;
}
if
(
!
(
analysis
->
glyphs
=
heap_alloc_zero
(
sizeof
(
StringGlyphs
)
*
analysis
->
numItems
)))
goto
error
;
...
...
@@ -2351,6 +2359,7 @@ const SCRIPT_LOGATTR * WINAPI ScriptString_pLogAttr(SCRIPT_STRING_ANALYSIS ssa)
TRACE
(
"(%p)
\n
"
,
ssa
);
if
(
!
analysis
)
return
NULL
;
if
(
!
(
analysis
->
dwFlags
&
SSA_BREAK
))
return
NULL
;
return
analysis
->
logattrs
;
}
...
...
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