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
e7e1ec62
Commit
e7e1ec62
authored
Sep 23, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
Sep 23, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Add stub implementations of IKnownFolder and IKnownFolderManager.
parent
12261fef
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
0 deletions
+9
-0
regsvr.c
dlls/shell32/regsvr.c
+7
-0
shell32_main.h
dlls/shell32/shell32_main.h
+1
-0
shellole.c
dlls/shell32/shellole.c
+1
-0
shellpath.c
dlls/shell32/shellpath.c
+0
-0
No files found.
dlls/shell32/regsvr.c
View file @
e7e1ec62
...
...
@@ -688,6 +688,13 @@ static struct regsvr_coclass const coclass_list[] = {
"shell32.dll"
,
"Apartment"
},
{
&
CLSID_KnownFolderManager
,
"Known Folder Manager"
,
0
,
NULL
,
"shell32.dll"
,
"Apartment"
},
{
NULL
}
/* list terminator */
};
...
...
dlls/shell32/shell32_main.h
View file @
e7e1ec62
...
...
@@ -98,6 +98,7 @@ HRESULT WINAPI MyDocuments_Constructor(IUnknown * pUnkOuter, REFIID riid, LPVOID
HRESULT
WINAPI
RecycleBin_Constructor
(
IUnknown
*
pUnkOuter
,
REFIID
riif
,
LPVOID
*
ppv
);
HRESULT
WINAPI
QueryAssociations_Constructor
(
IUnknown
*
pUnkOuter
,
REFIID
riid
,
LPVOID
*
ppOutput
);
HRESULT
WINAPI
ExplorerBrowser_Constructor
(
IUnknown
*
pUnkOuter
,
REFIID
riid
,
LPVOID
*
ppv
);
HRESULT
WINAPI
KnownFolderManager_Constructor
(
IUnknown
*
pUnkOuter
,
REFIID
riid
,
LPVOID
*
ppv
);
extern
HRESULT
CPanel_GetIconLocationW
(
LPCITEMIDLIST
,
LPWSTR
,
UINT
,
int
*
);
HRESULT
WINAPI
CPanel_ExtractIconA
(
LPITEMIDLIST
pidl
,
LPCSTR
pszFile
,
UINT
nIconIndex
,
HICON
*
phiconLarge
,
HICON
*
phiconSmall
,
UINT
nIconSize
);
HRESULT
WINAPI
CPanel_ExtractIconW
(
LPITEMIDLIST
pidl
,
LPCWSTR
pszFile
,
UINT
nIconIndex
,
HICON
*
phiconLarge
,
HICON
*
phiconSmall
,
UINT
nIconSize
);
...
...
dlls/shell32/shellole.c
View file @
e7e1ec62
...
...
@@ -78,6 +78,7 @@ static const struct {
{
&
CLSID_UnixDosFolder
,
UnixDosFolder_Constructor
},
{
&
CLSID_UnixFolder
,
UnixFolder_Constructor
},
{
&
CLSID_ExplorerBrowser
,
ExplorerBrowser_Constructor
},
{
&
CLSID_KnownFolderManager
,
KnownFolderManager_Constructor
},
{
NULL
,
NULL
}
};
...
...
dlls/shell32/shellpath.c
View file @
e7e1ec62
This diff is collapsed.
Click to expand it.
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