mirror of
https://github.com/reactos/reactos.git
synced 2025-05-29 22:18:13 +00:00
[D3DXOF] Sync with Wine Staging 3.17. CORE-15127
This commit is contained in:
parent
bcb816619a
commit
db2b3364c6
2 changed files with 3 additions and 3 deletions
|
@ -195,13 +195,13 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
|
|||
&& ! IsEqualGUID( &IID_IUnknown, riid) )
|
||||
return E_NOINTERFACE;
|
||||
|
||||
for (i=0; i < sizeof(object_creation)/sizeof(object_creation[0]); i++)
|
||||
for (i = 0; i < ARRAY_SIZE(object_creation); i++)
|
||||
{
|
||||
if (IsEqualGUID(object_creation[i].clsid, rclsid))
|
||||
break;
|
||||
}
|
||||
|
||||
if (i == sizeof(object_creation)/sizeof(object_creation[0]))
|
||||
if (i == ARRAY_SIZE(object_creation))
|
||||
{
|
||||
FIXME("%s: no class found.\n", debugstr_guid(rclsid));
|
||||
return CLASS_E_CLASSNOTAVAILABLE;
|
||||
|
|
|
@ -27,7 +27,7 @@ reactos/dll/directx/wine/d3d9 # Synced to WineStaging-3.9
|
|||
reactos/dll/directx/wine/d3dcompiler_43 # Synced to WineStaging-3.17
|
||||
reactos/dll/directx/wine/d3drm # Synced to WineStaging-3.9
|
||||
reactos/dll/directx/wine/d3dx9_24 => 43 # Synced to WineStaging-3.17
|
||||
reactos/dll/directx/wine/d3dxof # Synced to WineStaging-3.3
|
||||
reactos/dll/directx/wine/d3dxof # Synced to WineStaging-3.17
|
||||
reactos/dll/directx/wine/ddraw # Synced to WineStaging-3.9
|
||||
reactos/dll/directx/wine/devenum # Synced to WineStaging-3.9
|
||||
reactos/dll/directx/wine/dinput # Synced to WineStaging-3.9
|
||||
|
|
Loading…
Reference in a new issue