Commit 7e8c88fa authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

d2d1: Fix the ID2D1Factory::CreatePathGeometry() declaration.

parent c9227bcc
......@@ -134,7 +134,7 @@ static HRESULT STDMETHODCALLTYPE d2d_factory_CreateTransformedGeometry(ID2D1Fact
return E_NOTIMPL;
}
static HRESULT STDMETHODCALLTYPE d2d_factory_CreatePathGeometry(ID2D1Factory *iface, ID2D1PathGeometry *geometry)
static HRESULT STDMETHODCALLTYPE d2d_factory_CreatePathGeometry(ID2D1Factory *iface, ID2D1PathGeometry **geometry)
{
FIXME("iface %p, geometry %p stub!\n", iface, geometry);
......
......@@ -1216,7 +1216,7 @@ interface ID2D1Factory : IUnknown
[out] ID2D1TransformedGeometry **transformed_geometry
);
HRESULT CreatePathGeometry(
[out] ID2D1PathGeometry *geometry
[out] ID2D1PathGeometry **geometry
);
HRESULT CreateStrokeStyle(
[in] const D2D1_STROKE_STYLE_PROPERTIES *desc,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment