reactos/base/setup/lib/substset.h
Katayama Hirofumi MZ b539dd1c5a
[USETUP][BOOTDATA] Include optional CJK standard fonts (#2336)
This PR enables the developers to include the CJK standard fonts into ReactOS by adding them in Folder modules/optional. This feature is for test purpose only. You may not use the fonts illegally.
The embeddable font files are: mingliu.ttc, simsun.ttc, mssong.ttf, msgothic.ttc, msmincho.ttc, gulim.ttc and batang.ttc.
CORE-9619
2020-02-14 10:47:20 +09:00

16 lines
357 B
C

#pragma once
typedef struct _FONTSUBSTSETTINGS
{
BOOL bFoundFontMINGLIU;
BOOL bFoundFontSIMSUN;
BOOL bFoundFontMSSONG;
BOOL bFoundFontMSGOTHIC;
BOOL bFoundFontMSMINCHO;
BOOL bFoundFontGULIM;
BOOL bFoundFontBATANG;
} FONTSUBSTSETTINGS, *PFONTSUBSTSETTINGS;
BOOL
DoRegistryFontFixup(PFONTSUBSTSETTINGS pSettings, LANGID LangID);