1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#include "winhack.h"
/* Trick to get a variable-size LOGFONT structure. */
#define LF_FACESIZE
#include <gdidefs.h>
LOGFONT OEMFixed = {
OEM_FNT_HEIGHT,
OEM_FNT_WIDTH,
0,
0,
0,
0,
0,
0,
255, /* Charset. */
0,
2, /* Clip precision. */
2, /* Quality. */
1, /* Pitch. */
"Terminal" /* Font face. */
};
LOGFONT ANSIFixed = {
12, /* Width. */
9, /* Height. */
0,
0,
0,
0,
0,
0,
0, /* Charset. */
0,
2, /* Clip precision. */
2, /* Quality. */
1, /* Pitch. */
"Courier" /* Font face. */
};
LOGFONT ANSIVar = {
12, /* Width. */
9, /* Height. */
0,
0,
0,
0,
0,
0,
0, /* Charset. */
0,
2, /* Clip precision. */
2, /* Quality. */
2, /* Pitch. */
"Helv" /* Font face. */
};
|