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
8f7a99fb
Commit
8f7a99fb
authored
Jan 21, 2009
by
Dylan Smith
Committed by
Alexandre Julliard
Jan 22, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
richedit: Implemented ITextServices_TxGetVScroll & TxGetHScroll.
parent
94146a72
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
txtsrv.c
dlls/riched20/txtsrv.c
+12
-4
No files found.
dlls/riched20/txtsrv.c
View file @
8f7a99fb
...
...
@@ -190,8 +190,12 @@ HRESULT WINAPI fnTextSrv_TxGetHScroll(ITextServices *iface,
{
ICOM_THIS_MULTI
(
ITextServicesImpl
,
lpVtbl
,
iface
);
FIXME
(
"%p: STUB
\n
"
,
This
);
return
E_NOTIMPL
;
*
plMin
=
This
->
editor
->
horz_si
.
nMin
;
*
plMax
=
This
->
editor
->
horz_si
.
nMax
;
*
plPos
=
This
->
editor
->
horz_si
.
nPos
;
*
plPage
=
This
->
editor
->
horz_si
.
nPage
;
*
pfEnabled
=
(
This
->
editor
->
styleFlags
&
WS_HSCROLL
)
!=
0
;
return
S_OK
;
}
HRESULT
WINAPI
fnTextSrv_TxGetVScroll
(
ITextServices
*
iface
,
...
...
@@ -203,8 +207,12 @@ HRESULT WINAPI fnTextSrv_TxGetVScroll(ITextServices *iface,
{
ICOM_THIS_MULTI
(
ITextServicesImpl
,
lpVtbl
,
iface
);
FIXME
(
"%p: STUB
\n
"
,
This
);
return
E_NOTIMPL
;
*
plMin
=
This
->
editor
->
vert_si
.
nMin
;
*
plMax
=
This
->
editor
->
vert_si
.
nMax
;
*
plPos
=
This
->
editor
->
vert_si
.
nPos
;
*
plPage
=
This
->
editor
->
vert_si
.
nPage
;
*
pfEnabled
=
(
This
->
editor
->
styleFlags
&
WS_VSCROLL
)
!=
0
;
return
S_OK
;
}
HRESULT
WINAPI
fnTextSrv_OnTxSetCursor
(
ITextServices
*
iface
,
...
...
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