reactos/win32ss/drivers/font/ftfd/glyph.c
Hermès Bélusca-Maïto b819608ed8 Create a branch for console restructuration work.
svn path=/branches/condrv_restructure/; revision=63104
2014-05-02 14:13:40 +00:00

35 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;
}