1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-09 04:16:08 +00:00

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.
This commit is contained in:
Rein Klazes 2000-03-07 12:24:26 +00:00 committed by Alexandre Julliard
parent 5d3f7a6885
commit a99fa8601b
2 changed files with 11 additions and 2 deletions

View File

@ -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
============================

View File

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