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