mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 20:30:01 +00:00
gdiplus: Stub GdipCloneFontFamily.
This commit is contained in:
parent
148f184c23
commit
cbce618067
@ -395,6 +395,28 @@ GpStatus WINGDIPAPI GdipCreateFontFamilyFromName(GDIPCONST WCHAR *name,
|
||||
return Ok;
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
* GdipCloneFontFamily [GDIPLUS.@]
|
||||
*
|
||||
* Creates a deep copy of a Font Family object
|
||||
*
|
||||
* PARAMS
|
||||
* FontFamily [I] Font to clone
|
||||
* clonedFontFamily [O] The resulting cloned font
|
||||
*
|
||||
* RETURNS
|
||||
* SUCCESS: Ok
|
||||
*/
|
||||
GpStatus WINGDIPAPI GdipCloneFontFamily(GpFontFamily* FontFamily, GpFontFamily** clonedFontFamily)
|
||||
{
|
||||
if (!(FontFamily && clonedFontFamily)) return InvalidParameter;
|
||||
|
||||
FIXME("stub: %p (%s), %p\n", FontFamily,
|
||||
debugstr_w(FontFamily->FamilyName), clonedFontFamily);
|
||||
|
||||
return NotImplemented;
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
* GdipGetFamilyName [GDIPLUS.@]
|
||||
*
|
||||
|
@ -51,7 +51,7 @@
|
||||
@ stdcall GdipCloneBrush(ptr ptr)
|
||||
@ stdcall GdipCloneCustomLineCap(ptr ptr)
|
||||
@ stdcall GdipCloneFont(ptr ptr)
|
||||
@ stub GdipCloneFontFamily
|
||||
@ stdcall GdipCloneFontFamily(ptr ptr)
|
||||
@ stdcall GdipCloneImage(ptr ptr)
|
||||
@ stdcall GdipCloneImageAttributes(ptr ptr)
|
||||
@ stdcall GdipCloneMatrix(ptr ptr)
|
||||
|
@ -375,6 +375,7 @@ GpStatus WINGDIPAPI GdipGetFontSize(GpFont*, REAL*);
|
||||
|
||||
GpStatus WINGDIPAPI GdipCreateFontFamilyFromName(GDIPCONST WCHAR*,
|
||||
GpFontCollection*, GpFontFamily**);
|
||||
GpStatus WINGDIPAPI GdipCloneFontFamily(GpFontFamily*, GpFontFamily**);
|
||||
GpStatus WINGDIPAPI GdipDeleteFontFamily(GpFontFamily*);
|
||||
GpStatus WINGDIPAPI GdipGetFamilyName(GDIPCONST GpFontFamily*, WCHAR*, LANGID);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user