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
8b45127e
Commit
8b45127e
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: Added IChapteredRowset definition.
parent
f339c2fa
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
70 additions
and
0 deletions
+70
-0
usrmarshal.c
dlls/msdaps/usrmarshal.c
+24
-0
Makefile.in
include/Makefile.in
+1
-0
chprst.idl
include/chprst.idl
+43
-0
oledb.idl
include/oledb.idl
+1
-0
make_makefiles
tools/make_makefiles
+1
-0
No files found.
dlls/msdaps/usrmarshal.c
View file @
8b45127e
...
...
@@ -1491,3 +1491,27 @@ HRESULT CALLBACK IRowPositionChange_OnRowPositionChange_Proxy(IRowPositionChange
FIXME
(
"(%p)->(0x%x 0x%x %d): stub
\n
"
,
This
,
reason
,
phase
,
cant_deny
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
IChapteredRowset_ReleaseChapter_Stub
(
IChapteredRowset
*
This
,
HCHAPTER
chapter
,
DBREFCOUNT
*
refcount
,
IErrorInfo
**
errorinfo
)
{
FIXME
(
"(%p)->(%lx %p %p): stub
\n
"
,
This
,
chapter
,
refcount
,
errorinfo
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
IChapteredRowset_AddRefChapter_Stub
(
IChapteredRowset
*
This
,
HCHAPTER
chapter
,
DBREFCOUNT
*
refcount
,
IErrorInfo
**
errorinfo
)
{
FIXME
(
"(%p)->(%lx %p %p): stub
\n
"
,
This
,
chapter
,
refcount
,
errorinfo
);
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
IChapteredRowset_AddRefChapter_Proxy
(
IChapteredRowset
*
This
,
HCHAPTER
chapter
,
DBREFCOUNT
*
refcount
)
{
FIXME
(
"(%p)->(%lx %p): stub
\n
"
,
This
,
chapter
,
refcount
);
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
IChapteredRowset_ReleaseChapter_Proxy
(
IChapteredRowset
*
This
,
HCHAPTER
chapter
,
DBREFCOUNT
*
refcount
)
{
FIXME
(
"(%p)->(%lx %p): stub
\n
"
,
This
,
chapter
,
refcount
);
return
E_NOTIMPL
;
}
include/Makefile.in
View file @
8b45127e
...
...
@@ -164,6 +164,7 @@ SRCDIR_INCLUDES = \
cderr.h
\
cfgmgr32.h
\
cguid.h
\
chprst.idl
\
cierror.h
\
clusapi.h
\
cmdbas.idl
\
...
...
include/chprst.idl
0 → 100644
View file @
8b45127e
/*
*
Copyright
(
C
)
2013
Huw
Davies
*
*
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
c733a93
-
2
a1c
-
11
ce
-
ade5
-
00
aa0044773d
),
pointer_default
(
unique
)
]
interface
IChapteredRowset
:
IUnknown
{
[
local
]
HRESULT
AddRefChapter
(
[
in
]
HCHAPTER
chapter
,
[
out
]
DBREFCOUNT
*
refcount
)
;
[
call_as
(
AddRefChapter
)
]
HRESULT
RemoteAddRefChapter
(
[
in
]
HCHAPTER
chapter
,
[
out
]
DBREFCOUNT
*
refcount
,
[
out
]
IErrorInfo
**
errorinfo
)
;
[
local
]
HRESULT
ReleaseChapter
(
[
in
]
HCHAPTER
chapter
,
[
out
]
DBREFCOUNT
*
refcount
)
;
[
call_as
(
ReleaseChapter
)
]
HRESULT
RemoteReleaseChapter
(
[
in
]
HCHAPTER
chapter
,
[
out
]
DBREFCOUNT
*
refcount
,
[
out
]
IErrorInfo
**
errorinfo
)
;
}
include/oledb.idl
View file @
8b45127e
...
...
@@ -49,6 +49,7 @@ typedef DWORD_PTR DBHASHVALUE;
#
include
"rstbas.idl"
#
include
"rstinf.idl"
#
include
"rstloc.idl"
#
include
"chprst.idl"
#
include
"cmdbas.idl"
#
include
"cmdtxt.idl"
#
include
"dbccmd.idl"
...
...
tools/make_makefiles
View file @
8b45127e
...
...
@@ -140,6 +140,7 @@ my %private_idl_headers = (
"axcore.idl"
=>
1
,
"axextend.idl"
=>
1
,
"binres.idl"
=>
1
,
"chprst.idl"
=>
1
,
"cmdbas.idl"
=>
1
,
"cmdtxt.idl"
=>
1
,
"crtrow.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