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
93a7a903
Commit
93a7a903
authored
Dec 09, 2019
by
Hans Leidekker
Committed by
Alexandre Julliard
Dec 09, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msado15: Implement _Stream_get_Size.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
06d055f0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
3 deletions
+21
-3
stream.c
dlls/msado15/stream.c
+7
-2
msado15.c
dlls/msado15/tests/msado15.c
+14
-1
No files found.
dlls/msado15/stream.c
View file @
93a7a903
...
...
@@ -113,8 +113,13 @@ static HRESULT WINAPI stream_Invoke( _Stream *iface, DISPID member, REFIID riid,
static
HRESULT
WINAPI
stream_get_Size
(
_Stream
*
iface
,
LONG
*
size
)
{
FIXME
(
"%p, %p
\n
"
,
iface
,
size
);
return
E_NOTIMPL
;
struct
stream
*
stream
=
impl_from_Stream
(
iface
);
TRACE
(
"%p, %p
\n
"
,
stream
,
size
);
if
(
stream
->
state
==
adStateClosed
)
return
MAKE_ADO_HRESULT
(
adErrObjectClosed
);
*
size
=
stream
->
size
;
return
S_OK
;
}
static
HRESULT
WINAPI
stream_get_EOS
(
_Stream
*
iface
,
VARIANT_BOOL
*
eos
)
...
...
dlls/msado15/tests/msado15.c
View file @
93a7a903
...
...
@@ -50,7 +50,7 @@ static void test_Stream(void)
{
_Stream
*
stream
;
StreamTypeEnum
type
;
LONG
refs
,
pos
;
LONG
refs
,
size
,
pos
;
ObjectStateEnum
state
;
VARIANT
missing
,
val
;
HRESULT
hr
;
...
...
@@ -58,6 +58,9 @@ static void test_Stream(void)
hr
=
CoCreateInstance
(
&
CLSID_Stream
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID__Stream
,
(
void
**
)
&
stream
);
ok
(
hr
==
S_OK
,
"got %08x
\n
"
,
hr
);
hr
=
_Stream_get_Size
(
stream
,
&
size
);
ok
(
hr
==
MAKE_ADO_HRESULT
(
adErrObjectClosed
),
"got %08x
\n
"
,
hr
);
hr
=
_Stream_get_Position
(
stream
,
&
pos
);
ok
(
hr
==
MAKE_ADO_HRESULT
(
adErrObjectClosed
),
"got %08x
\n
"
,
hr
);
...
...
@@ -103,11 +106,21 @@ static void test_Stream(void)
ok
(
hr
==
S_OK
,
"got %08x
\n
"
,
hr
);
ok
(
state
==
adStateOpen
,
"got %u
\n
"
,
state
);
size
=
-
1
;
hr
=
_Stream_get_Size
(
stream
,
&
size
);
ok
(
hr
==
S_OK
,
"got %08x
\n
"
,
hr
);
ok
(
!
size
,
"got %d
\n
"
,
size
);
pos
=
-
1
;
hr
=
_Stream_get_Position
(
stream
,
&
pos
);
ok
(
hr
==
S_OK
,
"got %08x
\n
"
,
hr
);
ok
(
!
pos
,
"got %d
\n
"
,
pos
);
size
=
-
1
;
hr
=
_Stream_get_Size
(
stream
,
&
size
);
ok
(
hr
==
S_OK
,
"got %08x
\n
"
,
hr
);
ok
(
!
size
,
"got %d
\n
"
,
size
);
hr
=
_Stream_Read
(
stream
,
2
,
&
val
);
ok
(
hr
==
MAKE_ADO_HRESULT
(
adErrIllegalOperation
),
"got %08x
\n
"
,
hr
);
...
...
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