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
79d7e395
Commit
79d7e395
authored
May 04, 2013
by
Daniel Jelinski
Committed by
Alexandre Julliard
May 29, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xolehlp: Stub ITransactionImportWhereabouts.
parent
1fca23e6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
xolehlp.c
dlls/xolehlp/xolehlp.c
+9
-4
No files found.
dlls/xolehlp/xolehlp.c
View file @
79d7e395
...
...
@@ -321,16 +321,21 @@ static ULONG WINAPI TransactionImportWhereabouts_Release(ITransactionImportWhere
static
HRESULT
WINAPI
TransactionImportWhereabouts_GetWhereaboutsSize
(
ITransactionImportWhereabouts
*
iface
,
ULONG
*
pcbWhereabouts
)
{
FIXME
(
"(%p, %p): stub
\n
"
,
iface
,
pcbWhereabouts
);
FIXME
(
"(%p, %p): stub
returning fake value
\n
"
,
iface
,
pcbWhereabouts
);
return
E_NOTIMPL
;
if
(
!
pcbWhereabouts
)
return
E_INVALIDARG
;
*
pcbWhereabouts
=
1
;
return
S_OK
;
}
static
HRESULT
WINAPI
TransactionImportWhereabouts_GetWhereabouts
(
ITransactionImportWhereabouts
*
iface
,
ULONG
cbWhereabouts
,
BYTE
*
rgbWhereabouts
,
ULONG
*
pcbUsed
)
{
FIXME
(
"(%p, %u, %p, %p): stub
\n
"
,
iface
,
cbWhereabouts
,
rgbWhereabouts
,
pcbUsed
);
FIXME
(
"(%p, %u, %p, %p): stub
returning fake value
\n
"
,
iface
,
cbWhereabouts
,
rgbWhereabouts
,
pcbUsed
);
return
E_NOTIMPL
;
if
(
!
rgbWhereabouts
||
!
pcbUsed
)
return
E_INVALIDARG
;
*
rgbWhereabouts
=
0
;
*
pcbUsed
=
1
;
return
S_OK
;
}
static
const
ITransactionImportWhereaboutsVtbl
TransactionImportWhereabouts_Vtbl
=
{
TransactionImportWhereabouts_QueryInterface
,
...
...
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