From a99fa8601b809cd55d274c379d0dbe433ad90d34 Mon Sep 17 00:00:00 2001 From: Rein Klazes Date: Tue, 7 Mar 2000 12:24:26 +0000 Subject: [PATCH] Include in the AddFontResourceA/W fixme message a pointer to the fonts document. In this document tell the user how to find the needed tools. --- documentation/fonts | 7 +++++++ graphics/x11drv/xfont.c | 6 ++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/documentation/fonts b/documentation/fonts index 48afcddebf4..9b96a33a3f9 100644 --- a/documentation/fonts +++ b/documentation/fonts @@ -1,3 +1,10 @@ +Note: +===== +The fnt2bdf utility is included with Wine. It can be found in the tools +directory. +Links to the other tools mentioned in this document can be found on wine +headquarters: http://www.winehq.com/tools.html + How To Convert Windows Fonts ============================ diff --git a/graphics/x11drv/xfont.c b/graphics/x11drv/xfont.c index 0f2f18e932e..2ffe9df73c9 100644 --- a/graphics/x11drv/xfont.c +++ b/graphics/x11drv/xfont.c @@ -3107,7 +3107,8 @@ INT16 WINAPI AddFontResource16( LPCSTR filename ) */ INT WINAPI AddFontResourceA( LPCSTR str ) { - FIXME("(%s): stub\n", debugres_a(str)); + FIXME("(%s): stub! Read \"documentation/fonts\" how to install " + "this font manually.\n", debugres_a(str)); return 1; } @@ -3117,7 +3118,8 @@ INT WINAPI AddFontResourceA( LPCSTR str ) */ INT WINAPI AddFontResourceW( LPCWSTR str ) { - FIXME("(%s): stub\n", debugres_w(str) ); + FIXME("(%s): stub! Read \"documentation/fonts\" how to install " + "this font manually.\n", debugres_w(str)); return 1; }