mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 16:22:58 +00:00
[SHELL32][SDK] Implement SHCreatePropertyBag (#5541)
- Implement SHCreatePropertyBag function in utils.cpp. - Add its prototype to <undocshell.h>. CORE-9283
This commit is contained in:
parent
63fae07d12
commit
ea97c48909
3 changed files with 11 additions and 13 deletions
|
@ -9,6 +9,16 @@
|
|||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(shell);
|
||||
|
||||
/*************************************************************************
|
||||
* SHCreatePropertyBag (SHELL32.715)
|
||||
*/
|
||||
EXTERN_C HRESULT
|
||||
WINAPI
|
||||
SHCreatePropertyBag(_In_ REFIID riid, _Out_ void **ppvObj)
|
||||
{
|
||||
return SHCreatePropertyBagOnMemory(STGM_READWRITE, riid, ppvObj);
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* SheRemoveQuotesA (SHELL32.@)
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue