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
bb2600b6
Commit
bb2600b6
authored
Jul 20, 2010
by
André Hentschel
Committed by
Alexandre Julliard
Jul 21, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Add stub for SHGetPropertyStoreFromParsingName.
parent
e5a476c6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
shell32.spec
dlls/shell32/shell32.spec
+1
-0
shell32_main.c
dlls/shell32/shell32_main.c
+10
-0
No files found.
dlls/shell32/shell32.spec
View file @
bb2600b6
...
...
@@ -364,6 +364,7 @@
@ stdcall SHGetPathFromIDList(ptr ptr) SHGetPathFromIDListA
@ stdcall SHGetPathFromIDListA(ptr ptr)
@ stdcall SHGetPathFromIDListW(ptr ptr)
@ stdcall SHGetPropertyStoreFromParsingName(wstr ptr long ptr ptr)
@ stdcall SHGetSettings(ptr long)
@ stdcall SHGetSpecialFolderLocation(long long ptr)
@ stdcall SHGetSpecialFolderPathA(long ptr long long)
...
...
dlls/shell32/shell32_main.c
View file @
bb2600b6
...
...
@@ -38,6 +38,7 @@
#include "wingdi.h"
#include "shlobj.h"
#include "shlwapi.h"
#include "propsys.h"
#include "undocshell.h"
#include "pidl.h"
...
...
@@ -854,6 +855,15 @@ VOID WINAPI Printers_UnregisterWindow(HANDLE hClassPidl, HWND hwnd)
FIXME
(
"(%p, %p) stub!
\n
"
,
hClassPidl
,
hwnd
);
}
/*************************************************************************
* SHGetPropertyStoreFromParsingName [SHELL32.@]
*/
HRESULT
SHGetPropertyStoreFromParsingName
(
PCWSTR
pszPath
,
IBindCtx
*
pbc
,
GETPROPERTYSTOREFLAGS
flags
,
REFIID
riid
,
void
**
ppv
)
{
FIXME
(
"(%s %p %u %p %p) stub!
\n
"
,
debugstr_w
(
pszPath
),
pbc
,
flags
,
riid
,
ppv
);
return
E_NOTIMPL
;
}
/*************************************************************************/
typedef
struct
...
...
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