reactos/win32ss/drivers/font/ftfd/glyph.c
Hermès Bélusca-Maïto 65ce146169 Create a branch for working on csrss and co.
svn path=/branches/ros-csrss/; revision=57561
2012-10-14 13:04:31 +00:00

34 lines
616 B
C

/*
* PROJECT: ReactOS win32 subsystem
* LICENSE: GPL - See COPYING in the top level directory
* PURPOSE: GDI font driver for bitmap fonts
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
*/
#include "ftfd.h"
/** Public Interface **********************************************************/
PFD_GLYPHATTR
APIENTRY
FtfdQueryGlyphAttrs(
FONTOBJ *pfo,
ULONG iMode)
{
return NULL;
}
LONG
APIENTRY
FtfdQueryFontData(
DHPDEV dhpdev,
FONTOBJ *pfo,
ULONG iMode,
HGLYPH hg,
OUT GLYPHDATA *pgd,
PVOID pv,
ULONG cjSize)
{
return FD_ERROR;
}