Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
a99fa860
Commit
a99fa860
authored
Mar 07, 2000
by
Rein Klazes
Committed by
Alexandre Julliard
Mar 07, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
fonts
documentation/fonts
+7
-0
xfont.c
graphics/x11drv/xfont.c
+4
-2
No files found.
documentation/fonts
View file @
a99fa860
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
============================
...
...
graphics/x11drv/xfont.c
View file @
a99fa860
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment