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
2a78e48e
Commit
2a78e48e
authored
Aug 01, 2013
by
Nikolay Sivov
Committed by
Alexandre Julliard
Aug 01, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oledb32: Added IRowPositionChange interface definition.
parent
0e2e8386
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
53 additions
and
0 deletions
+53
-0
usrmarshal.c
dlls/msdaps/usrmarshal.c
+14
-0
Makefile.in
include/Makefile.in
+1
-0
oledb.idl
include/oledb.idl
+1
-0
rowpsc.idl
include/rowpsc.idl
+36
-0
make_makefiles
tools/make_makefiles
+1
-0
No files found.
dlls/msdaps/usrmarshal.c
View file @
2a78e48e
...
...
@@ -1477,3 +1477,17 @@ HRESULT CALLBACK IRowPosition_SetRowPosition_Proxy(IRowPosition* This, HCHAPTER
FIXME
(
"(%p)->(%lx %lx %d): stub
\n
"
,
This
,
chapter
,
row
,
flags
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
IRowPositionChange_OnRowPositionChange_Stub
(
IRowPositionChange
*
This
,
DBREASON
reason
,
DBEVENTPHASE
phase
,
BOOL
cant_deny
,
IErrorInfo
**
errorinfo
)
{
FIXME
(
"(%p)->(0x%x 0x%x %d %p): stub
\n
"
,
This
,
reason
,
phase
,
cant_deny
,
errorinfo
);
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
IRowPositionChange_OnRowPositionChange_Proxy
(
IRowPositionChange
*
This
,
DBREASON
reason
,
DBEVENTPHASE
phase
,
BOOL
cant_deny
)
{
FIXME
(
"(%p)->(0x%x 0x%x %d): stub
\n
"
,
This
,
reason
,
phase
,
cant_deny
);
return
E_NOTIMPL
;
}
include/Makefile.in
View file @
2a78e48e
...
...
@@ -481,6 +481,7 @@ SRCDIR_INCLUDES = \
row.idl
\
rowchg.idl
\
rowpos.idl
\
rowpsc.idl
\
rpc.h
\
rpcasync.h
\
rpcdce.h
\
...
...
include/oledb.idl
View file @
2a78e48e
...
...
@@ -65,6 +65,7 @@ typedef DWORD_PTR DBHASHVALUE;
#
include
"row.idl"
#
include
"rowchg.idl"
#
include
"rowpos.idl"
#
include
"rowpsc.idl"
#
include
"binres.idl"
#
include
"crtrow.idl"
#
include
"errrec.idl"
...
...
include/rowpsc.idl
0 → 100644
View file @
2a78e48e
/*
*
Copyright
(
C
)
2013
Nikolay
Sivov
*
*
This
library
is
free
software
; you can redistribute it and/or
*
modify
it
under
the
terms
of
the
GNU
Lesser
General
Public
*
License
as
published
by
the
Free
Software
Foundation
; either
*
version
2.1
of
the
License
,
or
(
at
your
option
)
any
later
version
.
*
*
This
library
is
distributed
in
the
hope
that
it
will
be
useful
,
*
but
WITHOUT
ANY
WARRANTY
; without even the implied warranty of
*
MERCHANTABILITY
or
FITNESS
FOR
A
PARTICULAR
PURPOSE
.
See
the
GNU
*
Lesser
General
Public
License
for
more
details
.
*
*
You
should
have
received
a
copy
of
the
GNU
Lesser
General
Public
*
License
along
with
this
library
; if not, write to the Free Software
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
[
object
,
uuid
(
0997
a571
-126e-11
d0
-
9
f8a
-
00
a0c9a0631e
),
pointer_default
(
unique
)
]
interface
IRowPositionChange
:
IUnknown
{
[
local
]
HRESULT
OnRowPositionChange
(
[
in
]
DBREASON
reason
,
[
in
]
DBEVENTPHASE
phase
,
[
in
]
BOOL
cant_deny
)
;
[
call_as
(
OnRowPositionChange
)
]
HRESULT
RemoteOnRowPositionChange
(
[
in
]
DBREASON
reason
,
[
in
]
DBEVENTPHASE
phase
,
[
in
]
BOOL
cant_deny
,
[
out
]
IErrorInfo
**
errorinfo
)
;
}
tools/make_makefiles
View file @
2a78e48e
...
...
@@ -156,6 +156,7 @@ my %private_idl_headers = (
"row.idl"
=>
1
,
"rowchg.idl"
=>
1
,
"rowpos.idl"
=>
1
,
"rowpsc.idl"
=>
1
,
"rstbas.idl"
=>
1
,
"rstinf.idl"
=>
1
,
"rstloc.idl"
=>
1
,
...
...
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