gdiplus: Stub GdipPrivateAddFontFile.
This commit is contained in:
parent
cfde278584
commit
01d607dceb
|
@ -653,3 +653,14 @@ GpStatus WINGDIPAPI GdipDeletePrivateFontCollection(GpFontCollection **fontColle
|
||||||
|
|
||||||
return NotImplemented;
|
return NotImplemented;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GpStatus WINGDIPAPI GdipPrivateAddFontFile(GpFontCollection* fontCollection,
|
||||||
|
GDIPCONST WCHAR* filename)
|
||||||
|
{
|
||||||
|
FIXME("stub: %p, %s\n", fontCollection, debugstr_w(filename));
|
||||||
|
|
||||||
|
if (!(fontCollection && filename))
|
||||||
|
return InvalidParameter;
|
||||||
|
|
||||||
|
return NotImplemented;
|
||||||
|
}
|
||||||
|
|
|
@ -464,7 +464,7 @@
|
||||||
@ stdcall GdipPathIterRewind(ptr)
|
@ stdcall GdipPathIterRewind(ptr)
|
||||||
@ stub GdipPlayMetafileRecord
|
@ stub GdipPlayMetafileRecord
|
||||||
@ stub GdipPlayTSClientRecord
|
@ stub GdipPlayTSClientRecord
|
||||||
@ stub GdipPrivateAddFontFile
|
@ stdcall GdipPrivateAddFontFile(ptr wstr)
|
||||||
@ stub GdipPrivateAddMemoryFont
|
@ stub GdipPrivateAddMemoryFont
|
||||||
@ stub GdipRecordMetafile
|
@ stub GdipRecordMetafile
|
||||||
@ stub GdipRecordMetafileFileName
|
@ stub GdipRecordMetafileFileName
|
||||||
|
|
|
@ -422,6 +422,7 @@ GpStatus WINGDIPAPI GdipGetGenericFontFamilyMonospace(GpFontFamily**);
|
||||||
|
|
||||||
GpStatus WINGDIPAPI GdipNewPrivateFontCollection(GpFontCollection**);
|
GpStatus WINGDIPAPI GdipNewPrivateFontCollection(GpFontCollection**);
|
||||||
GpStatus WINGDIPAPI GdipDeletePrivateFontCollection(GpFontCollection**);
|
GpStatus WINGDIPAPI GdipDeletePrivateFontCollection(GpFontCollection**);
|
||||||
|
GpStatus WINGDIPAPI GdipPrivateAddFontFile(GpFontCollection*, GDIPCONST WCHAR*);
|
||||||
|
|
||||||
GpStatus WINGDIPAPI GdipCreateStringFormat(INT,LANGID,GpStringFormat**);
|
GpStatus WINGDIPAPI GdipCreateStringFormat(INT,LANGID,GpStringFormat**);
|
||||||
GpStatus WINGDIPAPI GdipDeleteStringFormat(GpStringFormat*);
|
GpStatus WINGDIPAPI GdipDeleteStringFormat(GpStringFormat*);
|
||||||
|
|
Loading…
Reference in New Issue