Use Consolas font if it exists, special Japanese font if required

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7244 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2021-01-01 20:10:26 +00:00
parent 3fd700e56c
commit 72dd0e4f72
7 changed files with 38 additions and 2 deletions

View file

@ -37,6 +37,7 @@
#define SupportsWNT4() ( sizeof(void*) == 4 && !DpiAwarePerMonitor() ) // NT4 does not support the MultiMon API
#define SupportsW9X() ( sizeof(TCHAR) == 1 )
#define SupportsW95() ( FALSE && SupportsW9X() && !DpiAwarePerMonitor() )
#define SupportsW2000() ( sizeof(void*) == 4 )
// Defines
#define NSIS_URL "https://nsis.sourceforge.io/"