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
b43a0e11
Commit
b43a0e11
authored
May 24, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 25, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched20/tests: Some tests for GetText().
parent
f4438f1e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
148 additions
and
24 deletions
+148
-24
richole.c
dlls/riched20/richole.c
+7
-1
richole.c
dlls/riched20/tests/richole.c
+141
-23
No files found.
dlls/riched20/richole.c
View file @
b43a0e11
...
...
@@ -1142,10 +1142,16 @@ static HRESULT WINAPI ITextRange_fnInvoke(ITextRange *me, DISPID dispIdMember, R
static
HRESULT
WINAPI
ITextRange_fnGetText
(
ITextRange
*
me
,
BSTR
*
pbstr
)
{
ITextRangeImpl
*
This
=
impl_from_ITextRange
(
me
);
FIXME
(
"(%p)->(%p): stub
\n
"
,
This
,
pbstr
);
if
(
!
This
->
reOle
)
return
CO_E_RELEASED
;
FIXME
(
"not implemented %p
\n
"
,
This
);
if
(
!
pbstr
)
return
E_INVALIDARG
;
*
pbstr
=
NULL
;
return
E_NOTIMPL
;
}
...
...
dlls/riched20/tests/richole.c
View file @
b43a0e11
This diff is collapsed.
Click to expand it.
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