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
7f78caa8
Commit
7f78caa8
authored
Apr 05, 2013
by
Nikolay Sivov
Committed by
Alexandre Julliard
Apr 08, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Added IRowsetNotify definition and proxy/stub stub implementation.
parent
e2b88dcc
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
119 additions
and
0 deletions
+119
-0
usrmarshal.c
dlls/msdaps/usrmarshal.c
+40
-0
Makefile.in
include/Makefile.in
+1
-0
oledb.idl
include/oledb.idl
+3
-0
rstnot.idl
include/rstnot.idl
+74
-0
make_makefiles
tools/make_makefiles
+1
-0
No files found.
dlls/msdaps/usrmarshal.c
View file @
7f78caa8
...
...
@@ -967,3 +967,43 @@ HRESULT __RPC_STUB IDBAsynchStatus_GetStatus_Stub(IDBAsynchStatus* This, HCHAPTE
peAsynchPhase
,
ppwszStatusText
,
ppErrorInfoRem
);
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
IRowsetNotify_OnRowChange_Proxy
(
IRowsetNotify
*
This
,
IRowset
*
rowset
,
DBCOUNTITEM
rows
,
HROW
*
hrows
,
DBREASON
reason
,
DBEVENTPHASE
phase
,
BOOL
cantdeny
)
{
FIXME
(
"(%p)->(%p %ld %p %d %d %d): stub
\n
"
,
This
,
rowset
,
rows
,
hrows
,
reason
,
phase
,
cantdeny
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
IRowsetNotify_OnRowChange_Stub
(
IRowsetNotify
*
This
,
IRowset
*
rowset
,
DBCOUNTITEM
rows
,
HROW
*
hrows
,
DBREASON
reason
,
DBEVENTPHASE
phase
,
BOOL
cantdeny
)
{
FIXME
(
"(%p)->(%p %ld %p %d %d %d): stub
\n
"
,
This
,
rowset
,
rows
,
hrows
,
reason
,
phase
,
cantdeny
);
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
IRowsetNotify_OnFieldChange_Proxy
(
IRowsetNotify
*
This
,
IRowset
*
rowset
,
HROW
row
,
DBORDINAL
ccols
,
DBORDINAL
*
columns
,
DBREASON
reason
,
DBEVENTPHASE
phase
,
BOOL
cantdeny
)
{
FIXME
(
"(%p)->(%p %lx %ld %p %d %d %d): stub
\n
"
,
This
,
rowset
,
row
,
ccols
,
columns
,
reason
,
phase
,
cantdeny
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
IRowsetNotify_OnFieldChange_Stub
(
IRowsetNotify
*
This
,
IRowset
*
rowset
,
HROW
row
,
DBORDINAL
ccols
,
DBORDINAL
*
columns
,
DBREASON
reason
,
DBEVENTPHASE
phase
,
BOOL
cantdeny
)
{
FIXME
(
"(%p)->(%p %lx %ld %p %d %d %d): stub
\n
"
,
This
,
rowset
,
row
,
ccols
,
columns
,
reason
,
phase
,
cantdeny
);
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
IRowsetNotify_OnRowsetChange_Proxy
(
IRowsetNotify
*
This
,
IRowset
*
rowset
,
DBREASON
reason
,
DBEVENTPHASE
phase
,
BOOL
cantdeny
)
{
FIXME
(
"(%p)->(%p %d %d %d): stub
\n
"
,
This
,
rowset
,
reason
,
phase
,
cantdeny
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
IRowsetNotify_OnRowsetChange_Stub
(
IRowsetNotify
*
This
,
IRowset
*
rowset
,
DBREASON
reason
,
DBEVENTPHASE
phase
,
BOOL
cantdeny
)
{
FIXME
(
"(%p)->(%p %d %d %d): stub
\n
"
,
This
,
rowset
,
reason
,
phase
,
cantdeny
);
return
E_NOTIMPL
;
}
include/Makefile.in
View file @
7f78caa8
...
...
@@ -484,6 +484,7 @@ SRCDIR_INCLUDES = \
rstbas.idl
\
rstinf.idl
\
rstloc.idl
\
rstnot.idl
\
rtutils.h
\
scarderr.h
\
schannel.h
\
...
...
include/oledb.idl
View file @
7f78caa8
...
...
@@ -34,6 +34,8 @@ typedef LONG_PTR DBROWCOUNT;
typedef
ULONG_PTR
DBCOUNTITEM
;
typedef
ULONG_PTR
DBLENGTH
;
typedef
ULONG_PTR
DBORDINAL
;
typedef
DWORD
DBREASON
;
typedef
DWORD
DBEVENTPHASE
;
typedef
ULONG_PTR
DBBKMARK
;
typedef
DWORD_PTR
DB_DWRESERVE
;
typedef
ULONG_PTR
DBREFCOUNT
;
...
...
@@ -66,6 +68,7 @@ typedef struct {
#
include
"asynot.idl"
#
include
"asysta.idl"
#
include
"sesprp.idl"
#
include
"rstnot.idl"
#
include
"opnrst.idl"
#
include
"row.idl"
#
include
"rowchg.idl"
...
...
include/rstnot.idl
0 → 100644
View file @
7f78caa8
/*
*
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
(
0
c733a83
-
2
a1c
-
11
ce
-
ade5
-
00
aa0044773d
),
pointer_default
(
unique
)
]
interface
IRowsetNotify
:
IUnknown
{
[
local
]
HRESULT
OnFieldChange
(
[
in
]
IRowset
*
rowset
,
[
in
]
HROW
row
,
[
in
]
DBORDINAL
ccols
,
[
in
,
size_is
((
ULONG
)
ccols
)
]
DBORDINAL
*
columns
,
[
in
]
DBREASON
reason
,
[
in
]
DBEVENTPHASE
phase
,
[
in
]
BOOL
cantdeny
)
;
[
call_as
(
OnFieldChange
)
]
HRESULT
RemoteOnFieldChange
(
[
in
]
IRowset
*
rowset
,
[
in
]
HROW
row
,
[
in
]
DBORDINAL
ccols
,
[
in
,
size_is
((
ULONG
)
ccols
)
]
DBORDINAL
*
columns
,
[
in
]
DBREASON
reason
,
[
in
]
DBEVENTPHASE
phase
,
[
in
]
BOOL
cantdeny
)
;
[
local
]
HRESULT
OnRowChange
(
[
in
]
IRowset
*
rowset
,
[
in
]
DBCOUNTITEM
rows
,
[
in
,
size_is
((
ULONG
)
rows
)
]
HROW
*
hrows
,
[
in
]
DBREASON
reason
,
[
in
]
DBEVENTPHASE
phase
,
[
in
]
BOOL
cantdeny
)
;
[
call_as
(
OnRowChange
)
]
HRESULT
RemoteOnRowChange
(
[
in
]
IRowset
*
rowset
,
[
in
]
DBCOUNTITEM
rows
,
[
in
,
size_is
((
ULONG
)
rows
)
]
HROW
*
hrows
,
[
in
]
DBREASON
reason
,
[
in
]
DBEVENTPHASE
phase
,
[
in
]
BOOL
cantdeny
)
;
[
local
]
HRESULT
OnRowsetChange
(
[
in
]
IRowset
*
rowset
,
[
in
]
DBREASON
reason
,
[
in
]
DBEVENTPHASE
phase
,
[
in
]
BOOL
cantdeny
)
;
[
call_as
(
OnRowsetChange
)
]
HRESULT
RemoteOnRowsetChange
(
[
in
]
IRowset
*
rowset
,
[
in
]
DBREASON
reason
,
[
in
]
DBEVENTPHASE
phase
,
[
in
]
BOOL
cantdeny
)
;
}
tools/make_makefiles
View file @
7f78caa8
...
...
@@ -157,6 +157,7 @@ my %private_idl_headers = (
"rstbas.idl"
=>
1
,
"rstinf.idl"
=>
1
,
"rstloc.idl"
=>
1
,
"rstnot.idl"
=>
1
,
"sesprp.idl"
=>
1
,
"vmrender.idl"
=>
1
,
"xmldom.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