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
bec6cfe0
Commit
bec6cfe0
authored
Nov 11, 2003
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Nov 11, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Constify strings.
parent
4d626b06
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
25 deletions
+25
-25
freetype.c
dlls/gdi/freetype.c
+25
-25
No files found.
dlls/gdi/freetype.c
View file @
bec6cfe0
...
@@ -181,36 +181,36 @@ static GdiFont GdiFontList = NULL;
...
@@ -181,36 +181,36 @@ static GdiFont GdiFontList = NULL;
static
Family
*
FontList
=
NULL
;
static
Family
*
FontList
=
NULL
;
static
WCHAR
defSerif
[]
=
{
'T'
,
'i'
,
'm'
,
'e'
,
's'
,
' '
,
'N'
,
'e'
,
'w'
,
' '
,
static
const
WCHAR
defSerif
[]
=
{
'T'
,
'i'
,
'm'
,
'e'
,
's'
,
' '
,
'N'
,
'e'
,
'w'
,
' '
,
'R'
,
'o'
,
'm'
,
'a'
,
'n'
,
'\0'
};
'R'
,
'o'
,
'm'
,
'a'
,
'n'
,
'\0'
};
static
WCHAR
defSans
[]
=
{
'A'
,
'r'
,
'i'
,
'a'
,
'l'
,
'\0'
};
static
const
WCHAR
defSans
[]
=
{
'A'
,
'r'
,
'i'
,
'a'
,
'l'
,
'\0'
};
static
WCHAR
defFixed
[]
=
{
'C'
,
'o'
,
'u'
,
'r'
,
'i'
,
'e'
,
'r'
,
' '
,
'N'
,
'e'
,
'w'
,
'\0'
};
static
const
WCHAR
defFixed
[]
=
{
'C'
,
'o'
,
'u'
,
'r'
,
'i'
,
'e'
,
'r'
,
' '
,
'N'
,
'e'
,
'w'
,
'\0'
};
static
WCHAR
defSystem
[]
=
{
'A'
,
'r'
,
'i'
,
'a'
,
'l'
,
'\0'
};
static
const
WCHAR
defSystem
[]
=
{
'A'
,
'r'
,
'i'
,
'a'
,
'l'
,
'\0'
};
static
WCHAR
SystemW
[]
=
{
'S'
,
'y'
,
's'
,
't'
,
'e'
,
'm'
,
'\0'
};
static
const
WCHAR
SystemW
[]
=
{
'S'
,
'y'
,
's'
,
't'
,
'e'
,
'm'
,
'\0'
};
static
WCHAR
MSSansSerifW
[]
=
{
'M'
,
'S'
,
' '
,
'S'
,
'a'
,
'n'
,
's'
,
' '
,
static
const
WCHAR
MSSansSerifW
[]
=
{
'M'
,
'S'
,
' '
,
'S'
,
'a'
,
'n'
,
's'
,
' '
,
'S'
,
'e'
,
'r'
,
'i'
,
'f'
,
'\0'
};
'S'
,
'e'
,
'r'
,
'i'
,
'f'
,
'\0'
};
static
WCHAR
HelvW
[]
=
{
'H'
,
'e'
,
'l'
,
'v'
,
'\0'
};
static
const
WCHAR
HelvW
[]
=
{
'H'
,
'e'
,
'l'
,
'v'
,
'\0'
};
static
WCHAR
ArabicW
[]
=
{
'A'
,
'r'
,
'a'
,
'b'
,
'i'
,
'c'
,
'\0'
};
static
const
WCHAR
ArabicW
[]
=
{
'A'
,
'r'
,
'a'
,
'b'
,
'i'
,
'c'
,
'\0'
};
static
WCHAR
BalticW
[]
=
{
'B'
,
'a'
,
'l'
,
't'
,
'i'
,
'c'
,
'\0'
};
static
const
WCHAR
BalticW
[]
=
{
'B'
,
'a'
,
'l'
,
't'
,
'i'
,
'c'
,
'\0'
};
static
WCHAR
CHINESE_BIG5W
[]
=
{
'C'
,
'H'
,
'I'
,
'N'
,
'E'
,
'S'
,
'E'
,
'_'
,
'B'
,
'I'
,
'G'
,
'5'
,
'\0'
};
static
const
WCHAR
CHINESE_BIG5W
[]
=
{
'C'
,
'H'
,
'I'
,
'N'
,
'E'
,
'S'
,
'E'
,
'_'
,
'B'
,
'I'
,
'G'
,
'5'
,
'\0'
};
static
WCHAR
CHINESE_GB2312W
[]
=
{
'C'
,
'H'
,
'I'
,
'N'
,
'E'
,
'S'
,
'E'
,
'_'
,
'G'
,
'B'
,
'2'
,
'3'
,
'1'
,
'2'
,
'\0'
};
static
const
WCHAR
CHINESE_GB2312W
[]
=
{
'C'
,
'H'
,
'I'
,
'N'
,
'E'
,
'S'
,
'E'
,
'_'
,
'G'
,
'B'
,
'2'
,
'3'
,
'1'
,
'2'
,
'\0'
};
static
WCHAR
Central_EuropeanW
[]
=
{
'C'
,
'e'
,
'n'
,
't'
,
'r'
,
'a'
,
'l'
,
' '
,
static
const
WCHAR
Central_EuropeanW
[]
=
{
'C'
,
'e'
,
'n'
,
't'
,
'r'
,
'a'
,
'l'
,
' '
,
'E'
,
'u'
,
'r'
,
'o'
,
'p'
,
'e'
,
'a'
,
'n'
,
'\0'
};
'E'
,
'u'
,
'r'
,
'o'
,
'p'
,
'e'
,
'a'
,
'n'
,
'\0'
};
static
WCHAR
CyrillicW
[]
=
{
'C'
,
'y'
,
'r'
,
'i'
,
'l'
,
'l'
,
'i'
,
'c'
,
'\0'
};
static
const
WCHAR
CyrillicW
[]
=
{
'C'
,
'y'
,
'r'
,
'i'
,
'l'
,
'l'
,
'i'
,
'c'
,
'\0'
};
static
WCHAR
GreekW
[]
=
{
'G'
,
'r'
,
'e'
,
'e'
,
'k'
,
'\0'
};
static
const
WCHAR
GreekW
[]
=
{
'G'
,
'r'
,
'e'
,
'e'
,
'k'
,
'\0'
};
static
WCHAR
HangulW
[]
=
{
'H'
,
'a'
,
'n'
,
'g'
,
'u'
,
'l'
,
'\0'
};
static
const
WCHAR
HangulW
[]
=
{
'H'
,
'a'
,
'n'
,
'g'
,
'u'
,
'l'
,
'\0'
};
static
WCHAR
Hangul_Johab_W
[]
=
{
'H'
,
'a'
,
'n'
,
'g'
,
'u'
,
'l'
,
'('
,
'J'
,
'o'
,
'h'
,
'a'
,
'b'
,
')'
,
'\0'
};
static
const
WCHAR
Hangul_Johab_W
[]
=
{
'H'
,
'a'
,
'n'
,
'g'
,
'u'
,
'l'
,
'('
,
'J'
,
'o'
,
'h'
,
'a'
,
'b'
,
')'
,
'\0'
};
static
WCHAR
HebrewW
[]
=
{
'H'
,
'e'
,
'b'
,
'r'
,
'e'
,
'w'
,
'\0'
};
static
const
WCHAR
HebrewW
[]
=
{
'H'
,
'e'
,
'b'
,
'r'
,
'e'
,
'w'
,
'\0'
};
static
WCHAR
JapaneseW
[]
=
{
'J'
,
'a'
,
'p'
,
'a'
,
'n'
,
'e'
,
's'
,
'e'
,
'\0'
};
static
const
WCHAR
JapaneseW
[]
=
{
'J'
,
'a'
,
'p'
,
'a'
,
'n'
,
'e'
,
's'
,
'e'
,
'\0'
};
static
WCHAR
SymbolW
[]
=
{
'S'
,
'y'
,
'm'
,
'b'
,
'o'
,
'l'
,
'\0'
};
static
const
WCHAR
SymbolW
[]
=
{
'S'
,
'y'
,
'm'
,
'b'
,
'o'
,
'l'
,
'\0'
};
static
WCHAR
ThaiW
[]
=
{
'T'
,
'h'
,
'a'
,
'i'
,
'\0'
};
static
const
WCHAR
ThaiW
[]
=
{
'T'
,
'h'
,
'a'
,
'i'
,
'\0'
};
static
WCHAR
TurkishW
[]
=
{
'T'
,
'u'
,
'r'
,
'k'
,
'i'
,
's'
,
'h'
,
'\0'
};
static
const
WCHAR
TurkishW
[]
=
{
'T'
,
'u'
,
'r'
,
'k'
,
'i'
,
's'
,
'h'
,
'\0'
};
static
WCHAR
VietnameseW
[]
=
{
'V'
,
'i'
,
'e'
,
't'
,
'n'
,
'a'
,
'm'
,
'e'
,
's'
,
'e'
,
'\0'
};
static
const
WCHAR
VietnameseW
[]
=
{
'V'
,
'i'
,
'e'
,
't'
,
'n'
,
'a'
,
'm'
,
'e'
,
's'
,
'e'
,
'\0'
};
static
WCHAR
WesternW
[]
=
{
'W'
,
'e'
,
's'
,
't'
,
'e'
,
'r'
,
'n'
,
'\0'
};
static
const
WCHAR
WesternW
[]
=
{
'W'
,
'e'
,
's'
,
't'
,
'e'
,
'r'
,
'n'
,
'\0'
};
static
WCHAR
*
ElfScriptsW
[
32
]
=
{
/* these are in the order of the fsCsb[0] bits */
static
const
WCHAR
*
ElfScriptsW
[
32
]
=
{
/* these are in the order of the fsCsb[0] bits */
WesternW
,
/*00*/
WesternW
,
/*00*/
Central_EuropeanW
,
Central_EuropeanW
,
CyrillicW
,
CyrillicW
,
...
...
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