Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
540171bc
Commit
540171bc
authored
9 years ago
by
Nikolay Sivov
Committed by
Alexandre Julliard
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
shell32: Added FolderItemVerbs stub.
parent
e013a7e5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/shell32/shell32_main.h
+1
-0
1 addition, 0 deletions
dlls/shell32/shell32_main.h
dlls/shell32/shelldispatch.c
+180
-6
180 additions, 6 deletions
dlls/shell32/shelldispatch.c
dlls/shell32/tests/shelldispatch.c
+51
-0
51 additions, 0 deletions
dlls/shell32/tests/shelldispatch.c
with
232 additions
and
6 deletions
dlls/shell32/shell32_main.h
+
1
−
0
View file @
540171bc
...
...
@@ -235,6 +235,7 @@ enum tid_t {
IShellFolderViewDual3_tid
,
Folder3_tid
,
FolderItem2_tid
,
FolderItemVerbs_tid
,
LAST_tid
};
...
...
This diff is collapsed.
Click to expand it.
dlls/shell32/shelldispatch.c
+
180
−
6
View file @
540171bc
...
...
@@ -47,7 +47,8 @@ static const IID * const tid_ids[] =
&
IID_IShellDispatch6
,
&
IID_IShellFolderViewDual3
,
&
IID_Folder3
,
&
IID_FolderItem2
&
IID_FolderItem2
,
&
IID_FolderItemVerbs
};
static
ITypeInfo
*
typeinfos
[
LAST_tid
];
...
...
@@ -68,6 +69,11 @@ typedef struct {
VARIANT
dir
;
}
FolderItemImpl
;
typedef
struct
{
FolderItemVerbs
FolderItemVerbs_iface
;
LONG
ref
;
}
FolderItemVerbsImpl
;
static
inline
ShellDispatch
*
impl_from_IShellDispatch6
(
IShellDispatch6
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
ShellDispatch
,
IShellDispatch6_iface
);
...
...
@@ -83,6 +89,11 @@ static inline FolderItemImpl *impl_from_FolderItem(FolderItem2 *iface)
return
CONTAINING_RECORD
(
iface
,
FolderItemImpl
,
FolderItem2_iface
);
}
static
inline
FolderItemVerbsImpl
*
impl_from_FolderItemVerbs
(
FolderItemVerbs
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
FolderItemVerbsImpl
,
FolderItemVerbs_iface
);
}
static
HRESULT
load_typelib
(
void
)
{
ITypeLib
*
tl
;
...
...
@@ -141,6 +152,168 @@ HRESULT get_typeinfo(enum tid_t tid, ITypeInfo **typeinfo)
return
S_OK
;
}
/* FolderItemVerbs */
static
HRESULT
WINAPI
FolderItemVerbsImpl_QueryInterface
(
FolderItemVerbs
*
iface
,
REFIID
riid
,
void
**
ppv
)
{
FolderItemVerbsImpl
*
This
=
impl_from_FolderItemVerbs
(
iface
);
TRACE
(
"(%p,%p,%p)
\n
"
,
iface
,
riid
,
ppv
);
*
ppv
=
NULL
;
if
(
IsEqualIID
(
&
IID_IUnknown
,
riid
)
||
IsEqualIID
(
&
IID_IDispatch
,
riid
)
||
IsEqualIID
(
&
IID_FolderItemVerbs
,
riid
))
*
ppv
=
&
This
->
FolderItemVerbs_iface
;
else
{
FIXME
(
"not implemented for %s
\n
"
,
shdebugstr_guid
(
riid
));
*
ppv
=
NULL
;
return
E_NOINTERFACE
;
}
IUnknown_AddRef
((
IUnknown
*
)
*
ppv
);
return
S_OK
;
}
static
ULONG
WINAPI
FolderItemVerbsImpl_AddRef
(
FolderItemVerbs
*
iface
)
{
FolderItemVerbsImpl
*
This
=
impl_from_FolderItemVerbs
(
iface
);
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p), new refcount=%i
\n
"
,
iface
,
ref
);
return
ref
;
}
static
ULONG
WINAPI
FolderItemVerbsImpl_Release
(
FolderItemVerbs
*
iface
)
{
FolderItemVerbsImpl
*
This
=
impl_from_FolderItemVerbs
(
iface
);
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p), new refcount=%i
\n
"
,
iface
,
ref
);
if
(
!
ref
)
HeapFree
(
GetProcessHeap
(),
0
,
This
);
return
ref
;
}
static
HRESULT
WINAPI
FolderItemVerbsImpl_GetTypeInfoCount
(
FolderItemVerbs
*
iface
,
UINT
*
pctinfo
)
{
TRACE
(
"(%p,%p)
\n
"
,
iface
,
pctinfo
);
*
pctinfo
=
1
;
return
S_OK
;
}
static
HRESULT
WINAPI
FolderItemVerbsImpl_GetTypeInfo
(
FolderItemVerbs
*
iface
,
UINT
iTInfo
,
LCID
lcid
,
ITypeInfo
**
ppTInfo
)
{
HRESULT
hr
;
TRACE
(
"(%p,%u,%d,%p)
\n
"
,
iface
,
iTInfo
,
lcid
,
ppTInfo
);
hr
=
get_typeinfo
(
FolderItemVerbs_tid
,
ppTInfo
);
if
(
SUCCEEDED
(
hr
))
ITypeInfo_AddRef
(
*
ppTInfo
);
return
hr
;
}
static
HRESULT
WINAPI
FolderItemVerbsImpl_GetIDsOfNames
(
FolderItemVerbs
*
iface
,
REFIID
riid
,
LPOLESTR
*
rgszNames
,
UINT
cNames
,
LCID
lcid
,
DISPID
*
rgDispId
)
{
ITypeInfo
*
ti
;
HRESULT
hr
;
TRACE
(
"(%p,%p,%p,%u,%d,%p)
\n
"
,
iface
,
riid
,
rgszNames
,
cNames
,
lcid
,
rgDispId
);
hr
=
get_typeinfo
(
FolderItemVerbs_tid
,
&
ti
);
if
(
SUCCEEDED
(
hr
))
hr
=
ITypeInfo_GetIDsOfNames
(
ti
,
rgszNames
,
cNames
,
rgDispId
);
return
hr
;
}
static
HRESULT
WINAPI
FolderItemVerbsImpl_Invoke
(
FolderItemVerbs
*
iface
,
DISPID
dispIdMember
,
REFIID
riid
,
LCID
lcid
,
WORD
wFlags
,
DISPPARAMS
*
pDispParams
,
VARIANT
*
pVarResult
,
EXCEPINFO
*
pExcepInfo
,
UINT
*
puArgErr
)
{
ITypeInfo
*
ti
;
HRESULT
hr
;
TRACE
(
"(%p,%d,%p,%d,%u,%p,%p,%p,%p)
\n
"
,
iface
,
dispIdMember
,
riid
,
lcid
,
wFlags
,
pDispParams
,
pVarResult
,
pExcepInfo
,
puArgErr
);
hr
=
get_typeinfo
(
FolderItemVerbs_tid
,
&
ti
);
if
(
SUCCEEDED
(
hr
))
hr
=
ITypeInfo_Invoke
(
ti
,
iface
,
dispIdMember
,
wFlags
,
pDispParams
,
pVarResult
,
pExcepInfo
,
puArgErr
);
return
hr
;
}
static
HRESULT
WINAPI
FolderItemVerbsImpl_get_Count
(
FolderItemVerbs
*
iface
,
LONG
*
count
)
{
FIXME
(
"(%p, %p)
\n
"
,
iface
,
count
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
FolderItemVerbsImpl_get_Application
(
FolderItemVerbs
*
iface
,
IDispatch
**
disp
)
{
FIXME
(
"(%p, %p)
\n
"
,
iface
,
disp
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
FolderItemVerbsImpl_get_Parent
(
FolderItemVerbs
*
iface
,
IDispatch
**
disp
)
{
FIXME
(
"(%p, %p)
\n
"
,
iface
,
disp
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
FolderItemVerbsImpl_Item
(
FolderItemVerbs
*
iface
,
VARIANT
index
,
FolderItemVerb
**
verb
)
{
FIXME
(
"(%p, %s, %p)
\n
"
,
iface
,
debugstr_variant
(
&
index
),
verb
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
FolderItemVerbsImpl__NewEnum
(
FolderItemVerbs
*
iface
,
IUnknown
**
ret
)
{
FIXME
(
"(%p, %p)
\n
"
,
iface
,
ret
);
return
E_NOTIMPL
;
}
static
FolderItemVerbsVtbl
folderitemverbsvtbl
=
{
FolderItemVerbsImpl_QueryInterface
,
FolderItemVerbsImpl_AddRef
,
FolderItemVerbsImpl_Release
,
FolderItemVerbsImpl_GetTypeInfoCount
,
FolderItemVerbsImpl_GetTypeInfo
,
FolderItemVerbsImpl_GetIDsOfNames
,
FolderItemVerbsImpl_Invoke
,
FolderItemVerbsImpl_get_Count
,
FolderItemVerbsImpl_get_Application
,
FolderItemVerbsImpl_get_Parent
,
FolderItemVerbsImpl_Item
,
FolderItemVerbsImpl__NewEnum
};
static
HRESULT
FolderItemVerbs_Constructor
(
FolderItemVerbs
**
verbs
)
{
FolderItemVerbsImpl
*
This
;
*
verbs
=
NULL
;
This
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
FolderItemVerbsImpl
));
if
(
!
This
)
return
E_OUTOFMEMORY
;
This
->
FolderItemVerbs_iface
.
lpVtbl
=
&
folderitemverbsvtbl
;
This
->
ref
=
1
;
*
verbs
=
&
This
->
FolderItemVerbs_iface
;
return
S_OK
;
}
static
HRESULT
WINAPI
FolderItemImpl_QueryInterface
(
FolderItem2
*
iface
,
REFIID
riid
,
LPVOID
*
ppv
)
{
...
...
@@ -395,13 +568,14 @@ static HRESULT WINAPI FolderItemImpl_get_Type(FolderItem2 *iface, BSTR *pbs)
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
FolderItemImpl_Verbs
(
FolderItem2
*
iface
,
FolderItemVerbs
**
ppfic
)
static
HRESULT
WINAPI
FolderItemImpl_Verbs
(
FolderItem2
*
iface
,
FolderItemVerbs
**
verbs
)
{
FIXM
E
(
"(%p,%p)
\n
"
,
iface
,
ppfic
);
TRAC
E
(
"(%p,
%p)
\n
"
,
iface
,
verbs
);
*
ppfic
=
NULL
;
return
E_NOTIMPL
;
if
(
!
verbs
)
return
E_INVALIDARG
;
return
FolderItemVerbs_Constructor
(
verbs
);
}
static
HRESULT
WINAPI
FolderItemImpl_InvokeVerb
(
FolderItem2
*
iface
,
...
...
This diff is collapsed.
Click to expand it.
dlls/shell32/tests/shelldispatch.c
+
51
−
0
View file @
540171bc
...
...
@@ -743,6 +743,56 @@ static void test_ParseName(void)
IShellDispatch_Release
(
sd
);
}
static
void
test_Verbs
(
void
)
{
FolderItemVerbs
*
verbs
;
WCHAR
pathW
[
MAX_PATH
];
IShellDispatch
*
sd
;
FolderItem
*
item
;
Folder2
*
folder2
;
Folder
*
folder
;
HRESULT
hr
;
LONG
count
;
VARIANT
v
;
hr
=
CoCreateInstance
(
&
CLSID_Shell
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID_IShellDispatch
,
(
void
**
)
&
sd
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
GetTempPathW
(
sizeof
(
pathW
)
/
sizeof
(
pathW
[
0
]),
pathW
);
V_VT
(
&
v
)
=
VT_BSTR
;
V_BSTR
(
&
v
)
=
SysAllocString
(
pathW
);
hr
=
IShellDispatch_NameSpace
(
sd
,
v
,
&
folder
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
VariantClear
(
&
v
);
hr
=
Folder_QueryInterface
(
folder
,
&
IID_Folder2
,
(
void
**
)
&
folder2
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
Folder_Release
(
folder
);
hr
=
Folder2_get_Self
(
folder2
,
&
item
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
Folder2_Release
(
folder2
);
if
(
0
)
{
/* crashes on some systems */
hr
=
FolderItem_Verbs
(
item
,
NULL
);
ok
(
hr
==
E_INVALIDARG
,
"got 0x%08x
\n
"
,
hr
);
}
hr
=
FolderItem_Verbs
(
item
,
&
verbs
);
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
count
=
0
;
hr
=
FolderItemVerbs_get_Count
(
verbs
,
&
count
);
todo_wine
{
ok
(
hr
==
S_OK
,
"got 0x%08x
\n
"
,
hr
);
ok
(
count
>
0
,
"got count %d
\n
"
,
count
);
}
FolderItem_Release
(
item
);
IShellDispatch_Release
(
sd
);
}
START_TEST
(
shelldispatch
)
{
HRESULT
r
;
...
...
@@ -758,6 +808,7 @@ START_TEST(shelldispatch)
test_ShellFolderViewDual
();
test_ShellWindows
();
test_ParseName
();
test_Verbs
();
CoUninitialize
();
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment