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:
parent
5d3f7a6885
commit
a99fa8601b
|
@ -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
|
||||
============================
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue