mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +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
|
@ -180,18 +180,6 @@ SHMultiFileProperties(IDataObject *pDataObject, DWORD dwFlags)
|
|||
return E_FAIL;
|
||||
}
|
||||
|
||||
/*
|
||||
* Unimplemented
|
||||
*/
|
||||
EXTERN_C HRESULT
|
||||
WINAPI
|
||||
SHCreatePropertyBag(REFIID refIId, LPVOID *lpUnknown)
|
||||
{
|
||||
/* Call SHCreatePropertyBagOnMemory() from shlwapi.dll */
|
||||
FIXME("SHCreatePropertyBag() stub\n");
|
||||
return E_FAIL;
|
||||
}
|
||||
|
||||
/*
|
||||
* Unimplemented
|
||||
*/
|
||||
|
|
|
@ -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.@)
|
||||
*/
|
||||
|
|
|
@ -646,8 +646,8 @@ BOOL WINAPI SHInitRestricted(LPCVOID unused, LPCVOID inpRegKey);
|
|||
#define SMC_EXEC 4
|
||||
INT WINAPI Shell_GetCachedImageIndex(LPCWSTR szPath, INT nIndex, UINT bSimulateDoc);
|
||||
|
||||
HRESULT WINAPI SHCreatePropertyBag(_In_ REFIID riid, _Out_ void **ppvObj);
|
||||
HRESULT WINAPI SHLimitInputCombo(HWND hWnd, IShellFolder *psf);
|
||||
|
||||
HRESULT WINAPI SHGetImageList(int iImageList, REFIID riid, void **ppv);
|
||||
|
||||
BOOL WINAPI GUIDFromStringW(
|
||||
|
|
Loading…
Reference in a new issue