Commit f24b0a80 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

wineps: The truetype metrics should now be obtained from gdi32, so remove obsolete code.

parent 570e68b8
MODULE = wineps.drv
IMPORTS = user32 gdi32 winspool advapi32
EXTRAINCL = @FREETYPEINCL@ @CUPSINCL@
EXTRAINCL = @CUPSINCL@
C_SRCS = \
afm.c \
......@@ -58,7 +58,6 @@ C_SRCS = \
ppd.c \
ps.c \
text.c \
truetype.c \
type1.c \
type1afm.c \
type42.c
......
......@@ -290,11 +290,6 @@ BOOL PSDRV_GetFontMetrics(void)
if (PSDRV_GetType1Metrics() == FALSE)
return FALSE;
#ifdef HAVE_FREETYPE
if (PSDRV_GetTrueTypeMetrics() == FALSE)
return FALSE;
#endif
if (AddBuiltinAFMs() == FALSE)
return FALSE;
......
......@@ -536,7 +536,6 @@ extern INT PSDRV_StartPage( PHYSDEV dev ) DECLSPEC_HIDDEN;
INT PSDRV_GlyphListInit(void) DECLSPEC_HIDDEN;
const GLYPHNAME *PSDRV_GlyphName(LPCSTR szName) DECLSPEC_HIDDEN;
VOID PSDRV_IndexGlyphList(void) DECLSPEC_HIDDEN;
BOOL PSDRV_GetTrueTypeMetrics(void) DECLSPEC_HIDDEN;
BOOL PSDRV_GetType1Metrics(void) DECLSPEC_HIDDEN;
const AFMMETRICS *PSDRV_UVMetrics(LONG UV, const AFM *afm) DECLSPEC_HIDDEN;
SHORT PSDRV_CalcAvgCharWidth(const AFM *afm) DECLSPEC_HIDDEN;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment