mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
[MSDMO] Sync with Wine Staging 3.17. CORE-15127
This commit is contained in:
parent
ddfe5ce855
commit
64c1a65258
3 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
|
||||
add_definitions(-D__WINESRC__)
|
||||
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
||||
spec2def(msdmo.dll msdmo.spec)
|
||||
spec2def(msdmo.dll msdmo.spec ADD_IMPORTLIB)
|
||||
|
||||
list(APPEND SOURCE
|
||||
dmoreg.c
|
||||
|
|
|
@ -208,7 +208,7 @@ HRESULT WINAPI DMORegister(
|
|||
ret = RegCreateKeyExW(HKEY_CLASSES_ROOT, szDMORootKey, 0, NULL,
|
||||
REG_OPTION_NON_VOLATILE, KEY_WRITE, NULL, &hrkey, NULL);
|
||||
if (ret)
|
||||
return HRESULT_FROM_WIN32(ret);
|
||||
return E_FAIL;
|
||||
|
||||
/* Create clsidDMO key under MediaObjects */
|
||||
ret = RegCreateKeyExW(hrkey, GUIDToString(szguid, clsidDMO), 0, NULL,
|
||||
|
@ -316,7 +316,7 @@ HRESULT WINAPI DMOUnregister(REFCLSID dmo, REFGUID category)
|
|||
/* remove from all categories */
|
||||
if (IsEqualGUID(category, &GUID_NULL))
|
||||
{
|
||||
DWORD index = 0, len = sizeof(catW)/sizeof(WCHAR);
|
||||
DWORD index = 0, len = ARRAY_SIZE(catW);
|
||||
|
||||
while (!RegEnumKeyExW(categorieskey, index++, catW, &len, NULL, NULL, NULL, NULL))
|
||||
hr = unregister_dmo_from_category(dmoW, catW, categorieskey);
|
||||
|
|
|
@ -37,7 +37,7 @@ reactos/dll/directx/wine/dplay # Synced to WineStaging-3.3
|
|||
reactos/dll/directx/wine/dplayx # Synced to WineStaging-3.17
|
||||
reactos/dll/directx/wine/dsound # Synced to Wine-1.3.29
|
||||
reactos/dll/directx/wine/dxdiagn # Synced to WineStaging-3.3
|
||||
reactos/dll/directx/wine/msdmo # Synced to WineStaging-3.9
|
||||
reactos/dll/directx/wine/msdmo # Synced to WineStaging-3.17
|
||||
reactos/dll/directx/wine/qedit # Synced to WineStaging-3.3
|
||||
reactos/dll/directx/wine/quartz # Synced to WineStaging-3.9
|
||||
reactos/dll/directx/wine/wined3d # Synced to WineStaging-3.9
|
||||
|
|
Loading…
Reference in a new issue