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
3cd67795
Commit
3cd67795
authored
Dec 31, 2013
by
Nikolay Sivov
Committed by
Alexandre Julliard
Dec 31, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Implement SHCreateQueryCancelAutoPlayMoniker() with some tests.
parent
6fa197f5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
0 deletions
+13
-0
shell32.spec
dlls/shell32/shell32.spec
+1
-0
shellole.c
dlls/shell32/shellole.c
+11
-0
shellole.c
dlls/shell32/tests/shellole.c
+0
-0
shlobj.h
include/shlobj.h
+1
-0
No files found.
dlls/shell32/shell32.spec
View file @
3cd67795
...
...
@@ -334,6 +334,7 @@
@ stdcall SHBrowseForFolderW(ptr)
@ stdcall SHChangeNotify (long long ptr ptr)
@ stub SHChangeNotifySuspendResume
@ stdcall SHCreateQueryCancelAutoPlayMoniker(ptr)
@ stdcall SHCreateDefaultContextMenu(ptr ptr ptr)
@ stdcall SHCreateDirectoryExA(long str ptr)
@ stdcall SHCreateDirectoryExW(long wstr ptr)
...
...
dlls/shell32/shellole.c
View file @
3cd67795
...
...
@@ -794,3 +794,14 @@ HRESULT WINAPI SHPropStgWriteMultiple(IPropertyStorage *pps, UINT *uCodePage,
hres
=
IPropertyStorage_WriteMultiple
(
pps
,
cpspec
,
rgpspec
,
rgvar
,
propidNameFirst
);
return
hres
;
}
/*************************************************************************
* SHCreateQueryCancelAutoPlayMoniker [SHELL32.@]
*/
HRESULT
WINAPI
SHCreateQueryCancelAutoPlayMoniker
(
IMoniker
**
moniker
)
{
TRACE
(
"%p
\n
"
,
moniker
);
if
(
!
moniker
)
return
E_INVALIDARG
;
return
CreateClassMoniker
(
&
CLSID_QueryCancelAutoPlay
,
moniker
);
}
dlls/shell32/tests/shellole.c
View file @
3cd67795
This diff is collapsed.
Click to expand it.
include/shlobj.h
View file @
3cd67795
...
...
@@ -47,6 +47,7 @@ LPVOID WINAPI SHAlloc(ULONG) __WINE_ALLOC_SIZE(1);
HRESULT
WINAPI
SHCoCreateInstance
(
LPCWSTR
,
const
CLSID
*
,
IUnknown
*
,
REFIID
,
LPVOID
*
);
HPSXA
WINAPI
SHCreatePropSheetExtArray
(
HKEY
,
LPCWSTR
,
UINT
);
HPSXA
WINAPI
SHCreatePropSheetExtArrayEx
(
HKEY
,
LPCWSTR
,
UINT
,
IDataObject
*
);
HRESULT
WINAPI
SHCreateQueryCancelAutoPlayMoniker
(
IMoniker
**
);
HRESULT
WINAPI
SHCreateShellItem
(
LPCITEMIDLIST
,
IShellFolder
*
,
LPCITEMIDLIST
,
IShellItem
**
);
DWORD
WINAPI
SHCLSIDFromStringA
(
LPCSTR
,
CLSID
*
);
DWORD
WINAPI
SHCLSIDFromStringW
(
LPCWSTR
,
CLSID
*
);
...
...
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