+ added XftPatternPrint(), XftFontSetPrint()

This commit is contained in:
eknauel 2003-10-17 06:34:45 +00:00
parent 43515aeda1
commit 1476de7152
1 changed files with 14 additions and 0 deletions

View File

@ -373,6 +373,17 @@ s48_value scx_XftColorFree(s48_value sdpy, s48_value svisual,
/* TODO: XftColorAllocValue */
s48_value scx_XftPatternPrint(s48_value sxp)
{
XftPatternPrint(scx_extract_xftpattern(sxp));
return S48_UNSPECIFIC;
}
s48_value scx_XftFontSetPrint(s48_value sxfs)
{
XftFontSetPrint(scx_extract_xftfontset(sxfs));
return S48_UNSPECIFIC;
}
void scx_xft_init(void)
{
@ -432,4 +443,7 @@ void scx_xft_init(void)
S48_EXPORT_FUNCTION(scx_XftColorAllocName);
S48_EXPORT_FUNCTION(scx_XftColorFree);
S48_EXPORT_FUNCTION(scx_XftPatternPrint);
S48_EXPORT_FUNCTION(scx_XftFontSetPrint);
}