Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
fef71865
Commit
fef71865
authored
Jul 25, 2000
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jul 25, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make fnt2bdf produce correct fonts.
parent
e58bd1ba
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
59 additions
and
92 deletions
+59
-92
wingdi16.h
include/wine/wingdi16.h
+1
-0
fnt2bdf.c
tools/fnt2bdf.c
+49
-47
fnt2bdf.h
tools/fnt2bdf.h
+9
-45
No files found.
include/wine/wingdi16.h
View file @
fef71865
...
...
@@ -112,6 +112,7 @@ typedef struct
LONG
dfBitsPointer
;
LONG
dfBitsOffset
;
CHAR
dfReserved
;
/* Fields, introduced for Windows 3.x fonts */
LONG
dfFlags
;
INT16
dfAspace
;
INT16
dfBspace
;
...
...
tools/fnt2bdf.c
View file @
fef71865
This diff is collapsed.
Click to expand it.
tools/fnt2bdf.h
View file @
fef71865
#include <stdio.h>
#include "wine/wingdi16.h"
#include "pshpack1.h"
enum
data_types
{
dfChar
,
dfShort
,
dfLong
,
dfString
};
...
...
@@ -10,48 +12,16 @@ enum data_types {dfChar, dfShort, dfLong, dfString};
typedef
struct
tagFontHeader
{
unsigned
char
dfVersion
[
2
];
/* Version (always 0x3000) */
unsigned
char
dfSize
[
4
];
/* Total File Size */
unsigned
char
dfCopyright
[
60
];
/* Copyright notice */
unsigned
char
dfType
[
2
];
/* Vector or bitmap font */
unsigned
char
dfPoints
[
2
];
/* Nominal point size */
unsigned
char
dfVertRes
[
2
];
/* Vertical Resolution */
unsigned
char
dfHorizRes
[
2
];
/* Horizontal Resolutionchar */
unsigned
char
dfAscent
[
2
];
/* Character ascent in pixels */
unsigned
char
dfInternalLeading
[
2
];
/* Leading included in character defn */
unsigned
char
dfExternalLeading
[
2
];
/* Leading to be added by Windows */
unsigned
char
dfItalic
[
1
];
/* 1=Italic font */
unsigned
char
dfUnderline
[
1
];
/* 1=underlined font */
unsigned
char
dfStrikeOut
[
1
];
/* 1=strike-out font */
unsigned
char
dfWeight
[
2
];
/* Weight: 400=normal */
unsigned
char
dfCharSet
[
1
];
/* Character Set for this font */
unsigned
char
dfPixWidth
[
2
];
/* Character width (0 for proportional) */
unsigned
char
dfPixHeight
[
2
];
/* Character height */
unsigned
char
dfPitchAndFamily
[
1
];
/* Font Pitch and family */
unsigned
char
dfAvgWidth
[
2
];
/* Average character width */
unsigned
char
dfMaxWidth
[
2
];
/* Maximum character width */
unsigned
char
dfFirstChar
[
1
];
/* Firwst character of the font */
unsigned
char
dfLastChar
[
1
];
/* Last character of the font */
unsigned
char
dfDefaultChar
[
1
];
/* Missing character */
unsigned
char
dfBreakChar
[
1
];
/* Character to indicate word breaks */
unsigned
char
dfWidthBytes
[
2
];
/* Number of bytes in each row */
unsigned
char
dfDevice
[
4
];
/* Offset to device name */
unsigned
char
dfFace
[
4
];
/* Offset to type face name */
unsigned
char
dfBitsPointer
[
4
];
unsigned
char
dfBitsOffset
[
4
];
/* Offset to bitmaps */
unsigned
char
dfReserved
[
1
];
unsigned
char
dfFlags
[
4
];
/* Bitmapped flags */
unsigned
char
dfAspace
[
2
];
unsigned
char
dfBspace
[
2
];
unsigned
char
dfCspace
[
2
];
unsigned
char
dfColorTable
[
2
];
/* Offset to Color table */
unsigned
char
dfReserved1
[
4
];
short
dfVersion
;
/* Version */
long
dfSize
;
/* Total File Size */
char
dfCopyright
[
60
];
/* Copyright notice */
FONTINFO16
fi
;
/* FONTINFO structure */
}
fnt_hdrS
;
typedef
struct
WinCharStruct
{
unsigned
int
charWidth
;
unsigned
int
charOffset
;
long
charOffset
;
}
WinCharS
;
typedef
struct
fntFontStruct
...
...
@@ -65,10 +35,4 @@ typedef struct fntFontStruct
short
*
dfColorTableP
;
}
fnt_fontS
;
extern
int
return_data_value
(
enum
data_types
,
void
*
);
extern
int
dump_bdf
(
fnt_fontS
*
,
unsigned
char
*
);
extern
int
dump_bdf_hdr
(
FILE
*
fp
,
fnt_fontS
*
,
unsigned
char
*
);
extern
int
parse_fnt_data
(
unsigned
char
*
file_buffer
,
int
length
);
#include "poppack.h"
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