diff --git a/reactos/dll/win32/gdiplus/gdiplus.def b/reactos/dll/win32/gdiplus/gdiplus.def index 886c41a1bd0..ff4cd59acc2 100644 --- a/reactos/dll/win32/gdiplus/gdiplus.def +++ b/reactos/dll/win32/gdiplus/gdiplus.def @@ -268,6 +268,7 @@ GdipGetImageEncodersSize@8 GdipGetImageEncoders@12 GdipComment@12 GdipComment@12 +GdipCreatePath@8 GdipCreatePath2@20 GdipCreatePath2I@20 GdipClonePath@8 diff --git a/reactos/dll/win32/gdiplus/gdiplus/path.c b/reactos/dll/win32/gdiplus/gdiplus/path.c index 1a2bc2ab219..72423dba815 100644 --- a/reactos/dll/win32/gdiplus/gdiplus/path.c +++ b/reactos/dll/win32/gdiplus/gdiplus/path.c @@ -2,6 +2,18 @@ #include #include + +/* + * @unimplemented + */ +GpStatus WINGDIPAPI +GdipCreatePath( GpFillMode brushMode,GpPath **path) +{ + return NotImplemented; +} + + + /* * @unimplemented */