mirror of
https://github.com/reactos/reactos.git
synced 2025-05-28 21:48:19 +00:00
[PROPSYS] Sync with Wine Staging 3.9. CORE-14656
This commit is contained in:
parent
4523246628
commit
be43e1385f
3 changed files with 8 additions and 2 deletions
|
@ -84,7 +84,7 @@
|
||||||
@ stub PSGetPropertyDescriptionByName
|
@ stub PSGetPropertyDescriptionByName
|
||||||
@ stdcall PSGetPropertyDescriptionListFromString(wstr ptr ptr)
|
@ stdcall PSGetPropertyDescriptionListFromString(wstr ptr ptr)
|
||||||
@ stub PSGetPropertyFromPropertyStorage
|
@ stub PSGetPropertyFromPropertyStorage
|
||||||
@ stub PSGetPropertyKeyFromName
|
@ stdcall PSGetPropertyKeyFromName(wstr ptr)
|
||||||
@ stdcall PSGetPropertySystem(ptr ptr)
|
@ stdcall PSGetPropertySystem(ptr ptr)
|
||||||
@ stub PSGetPropertyValue
|
@ stub PSGetPropertyValue
|
||||||
@ stub PSLookupPropertyHandlerCLSID
|
@ stub PSLookupPropertyHandlerCLSID
|
||||||
|
|
|
@ -268,6 +268,12 @@ HRESULT WINAPI PSGetPropertyDescriptionListFromString(LPCWSTR proplist, REFIID r
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
HRESULT WINAPI PSGetPropertyKeyFromName(PCWSTR name, PROPERTYKEY *key)
|
||||||
|
{
|
||||||
|
FIXME("%s, %p\n", debugstr_w(name), key);
|
||||||
|
return E_NOTIMPL;
|
||||||
|
}
|
||||||
|
|
||||||
HRESULT WINAPI PSRefreshPropertySchema(void)
|
HRESULT WINAPI PSRefreshPropertySchema(void)
|
||||||
{
|
{
|
||||||
FIXME("\n");
|
FIXME("\n");
|
||||||
|
|
|
@ -151,7 +151,7 @@ reactos/dll/win32/pdh # Synced to WineStaging-3.3
|
||||||
reactos/dll/win32/pidgen # Synced to WineStaging-3.9
|
reactos/dll/win32/pidgen # Synced to WineStaging-3.9
|
||||||
reactos/dll/win32/powrprof # Forked at Wine-1.0rc5
|
reactos/dll/win32/powrprof # Forked at Wine-1.0rc5
|
||||||
reactos/dll/win32/printui # Synced to WineStaging-3.3
|
reactos/dll/win32/printui # Synced to WineStaging-3.3
|
||||||
reactos/dll/win32/propsys # Synced to WineStaging-3.3
|
reactos/dll/win32/propsys # Synced to WineStaging-3.9
|
||||||
reactos/dll/win32/pstorec # Synced to WineStaging-3.3
|
reactos/dll/win32/pstorec # Synced to WineStaging-3.3
|
||||||
reactos/dll/win32/qmgr # Synced to WineStaging-3.3
|
reactos/dll/win32/qmgr # Synced to WineStaging-3.3
|
||||||
reactos/dll/win32/qmgrprxy # Synced to WineStaging-2.9
|
reactos/dll/win32/qmgrprxy # Synced to WineStaging-2.9
|
||||||
|
|
Loading…
Reference in a new issue