Commit a99fa860 authored by Rein Klazes's avatar Rein Klazes Committed by Alexandre Julliard

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.
parent 5d3f7a68
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 How To Convert Windows Fonts
============================ ============================
......
...@@ -3107,7 +3107,8 @@ INT16 WINAPI AddFontResource16( LPCSTR filename ) ...@@ -3107,7 +3107,8 @@ INT16 WINAPI AddFontResource16( LPCSTR filename )
*/ */
INT WINAPI AddFontResourceA( LPCSTR str ) 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; return 1;
} }
...@@ -3117,7 +3118,8 @@ INT WINAPI AddFontResourceA( LPCSTR str ) ...@@ -3117,7 +3118,8 @@ INT WINAPI AddFontResourceA( LPCSTR str )
*/ */
INT WINAPI AddFontResourceW( LPCWSTR 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; return 1;
} }
......
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