mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 13:25:57 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
89 lines
2.8 KiB
C
89 lines
2.8 KiB
C
#pragma once
|
|
|
|
MUI_SUBFONT LatinFonts[] =
|
|
{
|
|
/*Font Substitute */
|
|
|
|
{ L"Arial", L"Liberation Sans" },
|
|
{ L"Courier", L"FreeMono" },
|
|
{ L"Courier New", L"FreeMono" },
|
|
{ L"Times New Roman", L"Liberation Serif" },
|
|
{ L"Tahoma", L"Tahoma" },
|
|
{ L"MS Sans Serif", L"Tahoma" },
|
|
{ L"MS Shell Dlg", L"Tahoma" },
|
|
{ L"MS Shell Dlg 2", L"Tahoma" },
|
|
{ L"Helv", L"Tahoma" },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
MUI_SUBFONT CyrillicFonts[] =
|
|
{
|
|
{ L"Arial", L"Liberation Sans" },
|
|
{ L"Courier", L"FreeMono" },
|
|
{ L"Courier New", L"FreeMono" },
|
|
{ L"Times New Roman", L"Liberation Serif" },
|
|
{ L"Tahoma", L"Tahoma" },
|
|
{ L"MS Sans Serif", L"Tahoma" },
|
|
{ L"MS Shell Dlg", L"Tahoma" },
|
|
{ L"MS Shell Dlg 2", L"Tahoma" },
|
|
{ L"Helv", L"Tahoma" },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
MUI_SUBFONT GreekFonts[] =
|
|
{
|
|
{ L"Arial", L"Liberation Sans" },
|
|
{ L"Courier", L"FreeMono" },
|
|
{ L"Courier New", L"FreeMono" },
|
|
{ L"Times New Roman", L"Liberation Serif" },
|
|
{ L"Tahoma", L"DejaVu Sans" },
|
|
{ L"MS Sans Serif", L"DejaVu Sans" },
|
|
{ L"MS Shell Dlg", L"DejaVu Sans" },
|
|
{ L"MS Shell Dlg 2", L"DejaVu Sans" },
|
|
{ L"Helv", L"DejaVu Sans" },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
MUI_SUBFONT HebrewFonts[] =
|
|
{
|
|
{ L"Arial", L"DejaVu Sans" },
|
|
{ L"Courier", L"FreeMono" },
|
|
{ L"Courier New", L"FreeMono" },
|
|
{ L"Times New Roman", L"DejaVu Serif" },
|
|
{ L"Tahoma", L"DejaVu Sans" },
|
|
{ L"MS Sans Serif", L"DejaVu Sans" },
|
|
{ L"MS Shell Dlg", L"DejaVu Sans" },
|
|
{ L"MS Shell Dlg 2", L"DejaVu Sans" },
|
|
{ L"Helv", L"DejaVu Sans" },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
MUI_SUBFONT CJKFonts[] =
|
|
{
|
|
{ L"Arial", L"Liberation Sans" },
|
|
{ L"Courier", L"FreeMono" },
|
|
{ L"Courier New", L"FreeMono" },
|
|
{ L"Times New Roman", L"Liberation Serif" },
|
|
{ L"Tahoma", L"Droid Sans Fallback" },
|
|
{ L"MS Sans Serif", L"Tahoma" },
|
|
{ L"MS Shell Dlg", L"Droid Sans Fallback" },
|
|
{ L"MS Shell Dlg 2", L"Droid Sans Fallback" },
|
|
{ L"MS UI Gothic", L"Droid Sans Fallback" },
|
|
{ L"MS UI Gothic 2", L"Droid Sans Fallback" },
|
|
{ L"Helv", L"Tahoma" },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
MUI_SUBFONT UnicodeFonts[] =
|
|
{
|
|
{ L"Arial", L"DejaVu Sans" },
|
|
{ L"Courier", L"DejaVu Sans Mono" },
|
|
{ L"Courier New", L"DejaVu Sans Mono" },
|
|
{ L"Times New Roman", L"DejaVu Serif" },
|
|
{ L"Tahoma", L"DejaVu Sans" },
|
|
{ L"MS Sans Serif", L"DejaVu Sans" },
|
|
{ L"MS Shell Dlg", L"DejaVu Sans" },
|
|
{ L"MS Shell Dlg 2", L"DejaVu Sans" },
|
|
{ L"Helv", L"DejaVu Sans" },
|
|
{ NULL, NULL }
|
|
};
|