1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

d2d1_1: Don't redefine D2D1_PROPERTY_BINDING (gcc 4.3).

Signed-off-by: Fabian Maurer <dark.shadow4@web.de>
This commit is contained in:
Fabian Maurer 2022-12-12 18:32:14 +01:00 committed by Alexandre Julliard
parent c844ebdb0a
commit 0de8f53b3b

View file

@ -157,7 +157,7 @@ typedef enum D2D1_LAYER_OPTIONS1
D2D1_LAYER_OPTIONS1_FORCE_DWORD = 0xffffffff,
} D2D1_LAYER_OPTIONS1;
typedef struct D2D1_PROPERTY_BINDING D2D1_PROPERTY_BINDING;
struct D2D1_PROPERTY_BINDING;
typedef D2D_MATRIX_4X4_F D2D1_MATRIX_4X4_F;
typedef enum D2D1_PROPERTY_TYPE
@ -936,14 +936,14 @@ interface ID2D1Factory1 : ID2D1Factory
HRESULT RegisterEffectFromStream(
[in] REFCLSID effect_id,
[in] IStream *property_xml,
[in, size_is(binding_count)] const D2D1_PROPERTY_BINDING *bindings,
[in, size_is(binding_count)] const struct D2D1_PROPERTY_BINDING *bindings,
[in] UINT32 binding_count,
[in] PD2D1_EFFECT_FACTORY effect_factory
);
HRESULT RegisterEffectFromString(
[in] REFCLSID effect_id,
[in] const WCHAR *property_xml,
[in, size_is(binding_count)] const D2D1_PROPERTY_BINDING *bindings,
[in, size_is(binding_count)] const struct D2D1_PROPERTY_BINDING *bindings,
[in] UINT32 binding_count,
[in] PD2D1_EFFECT_FACTORY effect_factory
);