From 21dfa5bf596f46ff8234cdd90f2f6ec78dde5ecf Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Sat, 16 Jun 2007 01:32:59 +0000 Subject: [PATCH] adding one missing stub svn path=/trunk/; revision=27198 --- reactos/dll/win32/gdiplus/gdiplus.def | 1 + reactos/dll/win32/gdiplus/gdiplus/path.c | 12 ++++++++++++ 2 files changed, 13 insertions(+) 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 */