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
2fe34bfb
Commit
2fe34bfb
authored
Jul 30, 2013
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jul 30, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Added IRowPosition interface definition.
parent
bd049b28
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
140 additions
and
0 deletions
+140
-0
usrmarshal.c
dlls/msdaps/usrmarshal.c
+60
-0
Makefile.in
include/Makefile.in
+1
-0
oledb.idl
include/oledb.idl
+1
-0
rowpos.idl
include/rowpos.idl
+77
-0
make_makefiles
tools/make_makefiles
+1
-0
No files found.
dlls/msdaps/usrmarshal.c
View file @
2fe34bfb
...
...
@@ -1279,3 +1279,63 @@ HRESULT __RPC_STUB IErrorRecords_AddErrorRecord_Stub(IErrorRecords* This, ERRORI
return
hr
;
}
HRESULT
__RPC_STUB
IRowPosition_Initialize_Stub
(
IRowPosition
*
This
,
IUnknown
*
rowset
,
IErrorInfo
**
errorinfo
)
{
FIXME
(
"(%p)->(%p %p): stub
\n
"
,
This
,
rowset
,
errorinfo
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
IRowPosition_SetRowPosition_Stub
(
IRowPosition
*
This
,
HCHAPTER
chapter
,
HROW
row
,
DBPOSITIONFLAGS
flags
,
IErrorInfo
**
errorinfo
)
{
FIXME
(
"(%p)->(%lx %lx %d %p): stub
\n
"
,
This
,
chapter
,
row
,
flags
,
errorinfo
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
IRowPosition_GetRowset_Stub
(
IRowPosition
*
This
,
REFIID
riid
,
IUnknown
**
rowset
,
IErrorInfo
**
errorinfo
)
{
FIXME
(
"(%p)->(%s %p %p): stub
\n
"
,
This
,
debugstr_guid
(
riid
),
rowset
,
errorinfo
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
IRowPosition_GetRowPosition_Stub
(
IRowPosition
*
This
,
HCHAPTER
*
chapter
,
HROW
*
row
,
DBPOSITIONFLAGS
*
flags
,
IErrorInfo
**
errorinfo
)
{
FIXME
(
"(%p)->(%p %p %p %p): stub
\n
"
,
This
,
chapter
,
row
,
flags
,
errorinfo
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
IRowPosition_ClearRowPosition_Stub
(
IRowPosition
*
This
,
IErrorInfo
**
errorinfo
)
{
FIXME
(
"(%p)->(%p): stub
\n
"
,
This
,
errorinfo
);
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
IRowPosition_ClearRowPosition_Proxy
(
IRowPosition
*
This
)
{
FIXME
(
"(%p): stub
\n
"
,
This
);
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
IRowPosition_GetRowPosition_Proxy
(
IRowPosition
*
This
,
HCHAPTER
*
chapter
,
HROW
*
row
,
DBPOSITIONFLAGS
*
flags
)
{
FIXME
(
"(%p)->(%p %p %p): stub
\n
"
,
This
,
chapter
,
row
,
flags
);
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
IRowPosition_GetRowset_Proxy
(
IRowPosition
*
This
,
REFIID
riid
,
IUnknown
**
rowset
)
{
FIXME
(
"(%p)->(%s %p): stub
\n
"
,
This
,
debugstr_guid
(
riid
),
rowset
);
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
IRowPosition_Initialize_Proxy
(
IRowPosition
*
This
,
IUnknown
*
rowset
)
{
FIXME
(
"(%p)->(%p): stub
\n
"
,
This
,
rowset
);
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
IRowPosition_SetRowPosition_Proxy
(
IRowPosition
*
This
,
HCHAPTER
chapter
,
HROW
row
,
DBPOSITIONFLAGS
flags
)
{
FIXME
(
"(%p)->(%lx %lx %d): stub
\n
"
,
This
,
chapter
,
row
,
flags
);
return
E_NOTIMPL
;
}
include/Makefile.in
View file @
2fe34bfb
...
...
@@ -480,6 +480,7 @@ SRCDIR_INCLUDES = \
rmxfguid.h
\
row.idl
\
rowchg.idl
\
rowpos.idl
\
rpc.h
\
rpcasync.h
\
rpcdce.h
\
...
...
include/oledb.idl
View file @
2fe34bfb
...
...
@@ -64,6 +64,7 @@ typedef DWORD_PTR DBHASHVALUE;
#
include
"opnrst.idl"
#
include
"row.idl"
#
include
"rowchg.idl"
#
include
"rowpos.idl"
#
include
"binres.idl"
#
include
"crtrow.idl"
#
include
"errrec.idl"
...
...
include/rowpos.idl
0 → 100644
View file @
2fe34bfb
/*
*
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
c733a94
-
2
a1c
-
11
ce
-
ade5
-
00
aa0044773d
),
pointer_default
(
unique
)
]
interface
IRowPosition
:
IUnknown
{
typedef
DWORD
DBPOSITIONFLAGS
;
enum
DBPOSITIONFLAGSENUM
{
DBPOSITION_OK
,
DBPOSITION_NOROW
,
DBPOSITION_BOF
,
DBPOSITION_EOF
}
;
[
local
]
HRESULT
ClearRowPosition
()
;
[
call_as
(
ClearRowPosition
)
]
HRESULT
RemoteClearRowPosition
(
[
out
]
IErrorInfo
**
errorinfo
)
;
[
local
]
HRESULT
GetRowPosition
(
[
out
]
HCHAPTER
*
chapter
,
[
out
]
HROW
*
row
,
[
out
]
DBPOSITIONFLAGS
*
position_flags
)
;
[
call_as
(
GetRowPosition
)
]
HRESULT
RemoteGetRowPosition
(
[
out
]
HCHAPTER
*
chapter
,
[
out
]
HROW
*
row
,
[
out
]
DBPOSITIONFLAGS
*
position_flags
,
[
out
]
IErrorInfo
**
errorinfo
)
;
[
local
]
HRESULT
GetRowset
(
[
in
]
REFIID
riid
,
[
out
,
iid_is
(
riid
)
]
IUnknown
**
rowset
)
;
[
call_as
(
GetRowset
)
]
HRESULT
RemoteGetRowset
(
[
in
]
REFIID
riid
,
[
out
,
iid_is
(
riid
)
]
IUnknown
**
rowset
,
[
out
]
IErrorInfo
**
errorinfo
)
;
[
local
]
HRESULT
Initialize
(
[
in
]
IUnknown
*
rowset
)
;
[
call_as
(
Initialize
)
]
HRESULT
RemoteInitialize
(
[
in
]
IUnknown
*
rowset
,
[
out
]
IErrorInfo
**
errorinfo
)
;
[
local
]
HRESULT
SetRowPosition
(
[
in
]
HCHAPTER
chapter
,
[
in
]
HROW
row
,
[
in
]
DBPOSITIONFLAGS
flags
)
;
[
call_as
(
SetRowPosition
)
]
HRESULT
RemoteSetRowPosition
(
[
in
]
HCHAPTER
chapter
,
[
in
]
HROW
row
,
[
in
]
DBPOSITIONFLAGS
flags
,
[
out
]
IErrorInfo
**
errorinfo
)
;
}
tools/make_makefiles
View file @
2fe34bfb
...
...
@@ -155,6 +155,7 @@ my %private_idl_headers = (
"opnrst.idl"
=>
1
,
"row.idl"
=>
1
,
"rowchg.idl"
=>
1
,
"rowpos.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