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
95a46b01
Commit
95a46b01
authored
Jul 17, 2010
by
David Hedberg
Committed by
Alexandre Julliard
Jul 20, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add IEnumShellItems interface declaration.
parent
9fd7f392
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
0 deletions
+56
-0
usrmarshal.c
dlls/actxprxy/usrmarshal.c
+27
-0
shobjidl.idl
include/shobjidl.idl
+29
-0
No files found.
dlls/actxprxy/usrmarshal.c
View file @
95a46b01
...
...
@@ -34,6 +34,7 @@
#include "servprov.h"
#include "comcat.h"
#include "docobj.h"
#include "shobjidl.h"
#include "wine/debug.h"
...
...
@@ -168,3 +169,29 @@ HRESULT __RPC_STUB IEnumOleDocumentViews_Next_Stub(
TRACE
(
"(%p)
\n
"
,
This
);
return
IEnumOleDocumentViews_Next
(
This
,
cViews
,
rgpView
,
pcFetched
);
}
HRESULT
CALLBACK
IEnumShellItems_Next_Proxy
(
IEnumShellItems
*
This
,
ULONG
celt
,
IShellItem
**
rgelt
,
ULONG
*
pceltFetched
)
{
ULONG
fetched
;
TRACE
(
"(%p)->(%d, %p, %p)
\n
"
,
This
,
celt
,
rgelt
,
pceltFetched
);
if
(
!
pceltFetched
)
pceltFetched
=
&
fetched
;
return
IEnumShellItems_RemoteNext_Proxy
(
This
,
celt
,
rgelt
,
pceltFetched
);
}
HRESULT
__RPC_STUB
IEnumShellItems_Next_Stub
(
IEnumShellItems
*
This
,
ULONG
celt
,
IShellItem
**
rgelt
,
ULONG
*
pceltFetched
)
{
HRESULT
hr
;
TRACE
(
"(%p)->(%d, %p, %p)
\n
"
,
This
,
celt
,
rgelt
,
pceltFetched
);
*
pceltFetched
=
0
;
hr
=
IEnumShellItems_Next
(
This
,
celt
,
rgelt
,
pceltFetched
);
if
(
hr
==
S_OK
)
*
pceltFetched
=
celt
;
return
hr
;
}
include/shobjidl.idl
View file @
95a46b01
...
...
@@ -414,6 +414,35 @@ interface INewWindowManager : IUnknown
cpp_quote
(
"#define SID_SNewWindowManager IID_INewWindowManager"
)
/*****************************************************************************
*
IEnumShellItems
interface
*/
[
object
,
uuid
(
70629033
-
E363
-
4
A28
-
A567
-
0
DB78006E6D7
),
pointer_default
(
unique
)
]
interface
IEnumShellItems
:
IUnknown
{
[
local
]
HRESULT
Next
(
[
in
]
ULONG
celt
,
[
out
,
size_is
(
celt
),
length_is
(
*
pceltFetched
)
]
IShellItem
**
rgelt
,
[
out
]
ULONG
*
pceltFetched
)
;
[
call_as
(
Next
)
]
HRESULT
RemoteNext
(
[
in
]
ULONG
celt
,
[
out
,
size_is
(
celt
),
length_is
(
*
pceltFetched
)
]
IShellItem
**
rgelt
,
[
out
]
ULONG
*
pceltFetched
)
;
HRESULT
Skip
(
[
in
]
ULONG
celt
)
;
HRESULT
Reset
()
;
HRESULT
Clone
(
[
out
]
IEnumShellItems
**
ppenum
)
;
}
/*****************************************************************************
*
FOLDERSETTINGS
*/
typedef
char
*
LPVIEWSETTINGS
;
...
...
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