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
3006cba5
Commit
3006cba5
authored
Sep 02, 2009
by
Owen Rudge
Committed by
Alexandre Julliard
Sep 08, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shlwapi: Implement stub for SHCreatePropertyBagOnRegKey.
parent
dbac3f17
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
1 deletion
+27
-1
ordinal.c
dlls/shlwapi/ordinal.c
+26
-0
shlwapi.spec
dlls/shlwapi/shlwapi.spec
+1
-1
No files found.
dlls/shlwapi/ordinal.c
View file @
3006cba5
...
...
@@ -4569,3 +4569,29 @@ free_sids:
return
psd
;
}
/***********************************************************************
* SHCreatePropertyBagOnRegKey [SHLWAPI.471]
*
* Creates a property bag from a registry key
*
* PARAMS
* hKey [I] Handle to the desired registry key
* subkey [I] Name of desired subkey, or NULL to open hKey directly
* grfMode [I] Optional flags
* riid [I] IID of requested property bag interface
* ppv [O] Address to receive pointer to the new interface
*
* RETURNS
* success: 0
* failure: error code
*
*/
HRESULT
WINAPI
SHCreatePropertyBagOnRegKey
(
HKEY
hKey
,
LPCWSTR
subkey
,
DWORD
grfMode
,
REFIID
riid
,
void
**
ppv
)
{
FIXME
(
"%p %s %d %s %p STUB
\n
"
,
hKey
,
debugstr_w
(
subkey
),
grfMode
,
debugstr_guid
(
riid
),
ppv
);
return
E_NOTIMPL
;
}
dlls/shlwapi/shlwapi.spec
View file @
3006cba5
...
...
@@ -468,7 +468,7 @@
468 stub -noname RunIndirectRegCommand
469 stub -noname RunRegCommand
470 stub -noname IUnknown_ProfferServiceOld
471 st
ub -noname SHCreatePropertyBagOnRegKey
471 st
dcall -noname SHCreatePropertyBagOnRegKey(long wstr long ptr ptr)
472 stub -noname SHCreatePropertyBagOnProfileSelection
473 stub -noname SHGetIniStringUTF7W
474 stub -noname SHSetIniStringUTF7W
...
...
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