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
ac40feba
Commit
ac40feba
authored
Jul 18, 2006
by
Jeff Latimer
Committed by
Alexandre Julliard
Jul 19, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
usp10: Add ScriptStringCPtoX and ScriptStringXtoCP stubs.
parent
875b5db1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
2 deletions
+25
-2
usp10.c
dlls/usp10/usp10.c
+23
-0
usp10.spec
dlls/usp10/usp10.spec
+2
-2
No files found.
dlls/usp10/usp10.c
View file @
ac40feba
...
...
@@ -317,6 +317,29 @@ HRESULT WINAPI ScriptStringOut(SCRIPT_STRING_ANALYSIS ssa,
}
/***********************************************************************
* ScriptStringCPtoX (USP10.@)
*
*/
HRESULT
WINAPI
ScriptStringCPtoX
(
SCRIPT_STRING_ANALYSIS
ssa
,
int
icp
,
BOOL
fTrailing
,
int
*
pX
)
{
FIXME
(
"(%p), %d, %d, (%p): stub
\n
"
,
ssa
,
icp
,
fTrailing
,
pX
);
*
pX
=
0
;
/* Set a reasonable value */
return
S_OK
;
}
/***********************************************************************
* ScriptStringXtoCP (USP10.@)
*
*/
HRESULT
WINAPI
ScriptStringXtoCP
(
SCRIPT_STRING_ANALYSIS
ssa
,
int
iX
,
int
*
piCh
,
int
*
piTrailing
)
{
FIXME
(
"(%p), %d, (%p), (%p): stub
\n
"
,
ssa
,
iX
,
piCh
,
piTrailing
);
*
piCh
=
0
;
/* Set a reasonable value */
*
piTrailing
=
0
;
return
S_OK
;
}
/***********************************************************************
* ScriptStringFree (USP10.@)
*
*/
...
...
dlls/usp10/usp10.spec
View file @
ac40feba
...
...
@@ -18,13 +18,13 @@
@ stdcall ScriptRecordDigitSubstitution(ptr ptr)
@ stdcall ScriptShape(ptr ptr ptr long long ptr ptr ptr ptr ptr)
@ stdcall ScriptStringAnalyse(ptr ptr long long long long long ptr ptr ptr ptr ptr ptr)
@ st
ub ScriptStringCPtoX
@ st
dcall ScriptStringCPtoX(ptr long long ptr)
@ stdcall ScriptStringFree(ptr)
@ stub ScriptStringGetLogicalWidths
@ stub ScriptStringGetOrder
@ stdcall ScriptStringOut(ptr long long long ptr long long long)
@ stub ScriptStringValidate
@ st
ub ScriptStringXtoCP
@ st
dcall ScriptStringXtoCP(ptr long ptr ptr)
@ stub ScriptString_pLogAttr
@ stub ScriptString_pSize
@ stub ScriptString_pcOutChars
...
...
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