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
2139a402
Commit
2139a402
authored
Aug 22, 2013
by
Nikolay Sivov
Committed by
Alexandre Julliard
Aug 22, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oledb32: Report IRowPositionChange as supported sink type.
parent
97fd3f3b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
2 deletions
+15
-2
rowpos.c
dlls/oledb32/rowpos.c
+15
-2
No files found.
dlls/oledb32/rowpos.c
View file @
2139a402
...
@@ -21,6 +21,7 @@
...
@@ -21,6 +21,7 @@
#include "windef.h"
#include "windef.h"
#include "ole2.h"
#include "ole2.h"
#include "olectl.h"
#include "oledb.h"
#include "oledb.h"
#include "oledberr.h"
#include "oledberr.h"
...
@@ -194,8 +195,20 @@ static HRESULT WINAPI cpc_EnumConnectionPoints(IConnectionPointContainer *iface,
...
@@ -194,8 +195,20 @@ static HRESULT WINAPI cpc_EnumConnectionPoints(IConnectionPointContainer *iface,
static
HRESULT
WINAPI
cpc_FindConnectionPoint
(
IConnectionPointContainer
*
iface
,
REFIID
riid
,
IConnectionPoint
**
point
)
static
HRESULT
WINAPI
cpc_FindConnectionPoint
(
IConnectionPointContainer
*
iface
,
REFIID
riid
,
IConnectionPoint
**
point
)
{
{
rowpos
*
This
=
impl_from_IConnectionPointContainer
(
iface
);
rowpos
*
This
=
impl_from_IConnectionPointContainer
(
iface
);
FIXME
(
"(%p)->(%s %p): stub
\n
"
,
This
,
debugstr_guid
(
riid
),
point
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%s %p)
\n
"
,
This
,
debugstr_guid
(
riid
),
point
);
if
(
IsEqualIID
(
riid
,
&
IID_IRowPositionChange
))
{
*
point
=
&
This
->
cp
.
IConnectionPoint_iface
;
IConnectionPoint_AddRef
(
*
point
);
return
S_OK
;
}
else
{
FIXME
(
"unsupported riid %s
\n
"
,
debugstr_guid
(
riid
));
return
CONNECT_E_NOCONNECTION
;
}
}
}
static
const
struct
IConnectionPointContainerVtbl
rowpos_cpc_vtbl
=
static
const
struct
IConnectionPointContainerVtbl
rowpos_cpc_vtbl
=
...
...
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