Implemented GdiComment for enhanced metafiles.
diff --git a/objects/gdiobj.c b/objects/gdiobj.c index 6e2d483..f55a308 100644 --- a/objects/gdiobj.c +++ b/objects/gdiobj.c
@@ -1370,9 +1370,17 @@ */ BOOL WINAPI GdiComment(HDC hdc, UINT cbSize, const BYTE *lpData) { - FIXME("GdiComment, stub\n"); - return 0; + DC *dc = DC_GetDCPtr(hdc); + BOOL ret = FALSE; + if(dc) + { + if (dc->funcs->pGdiComment) + ret = dc->funcs->pGdiComment( dc->physDev, cbSize, lpData ); + } + GDI_ReleaseObj( hdc ); + return ret; } + /******************************************************************* * SetColorAdjustment [GDI32.@] *