Initial community commit

This commit is contained in:
Jef 2024-09-24 14:54:57 +02:00
parent 537bcbc862
commit fc06254474
16440 changed files with 4239995 additions and 2 deletions

View file

@ -0,0 +1,27 @@
#include <precomp.h>
#include <api/font/svc_fonti.h>
#define CBCLASS svc_fontI
START_DISPATCH
VCB(TEXTOUT, textOut);
VCB(TEXTOUT2, textOut2);
VCB(TEXTOUTELLIPSED, textOutEllipsed);
VCB(TEXTOUTWRAPPED, textOutWrapped);
VCB(TEXTOUTWRAPPEDPATHED, textOutWrappedPathed);
VCB(TEXTOUTCENTERED, textOutCentered);
CB(GETTEXTWIDTH, getTextWidth);
CB(GETTEXTHEIGHT, getTextHeight);
CB(GETTEXTHEIGHT2, getTextHeight2);
VCB(GETTEXTEXTENT, getTextExtent);
VCB(SETFONTID, setFontId);
CB(GETFONTID, getFontId);
CB(GETFACENAME_, getFaceName);
CB(ISBITMAP, isBitmap);
CB(GETSCRIPTID, getScriptId);
VCB(SETSCRIPTID, setScriptId);
VCB(SETFONTFACE, setFontFace);
CB(ADDFONTRESOURCE, addFontResource);
CB(ADDFONTRESOURCE2, addFontResource2);
CB(GETFONTSVCNAME, getFontSvcName);
END_DISPATCH
#undef CBCLASS