Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*********************************************************************************
* grerc.h * * This file contains definitions for the font script names stored in the grerc * resource file. * * History:0 * 3-6-95 22:30:00 Gerrit van Wingerden [gerritv] * Wrote it. * * Copyright (c) 1995-1999 Microsoft Corporation ********************************************************************************/
#define SCRIPT_WESTERN 0
#define SCRIPT_SYMBOL 1
#define SCRIPT_MAC 2
#define SCRIPT_JAPANESE 3
#define SCRIPT_HANGEUL 4
#define SCRIPT_HANGEUL_JOHAB 5
#define SCRIPT_CHINESE_GB2312 6
#define SCRIPT_CHINESE_BIG5 7
#define SCRIPT_GREEK 8
#define SCRIPT_TURKISH 9
#define SCRIPT_VIETNAMESE 10
#define SCRIPT_HEBREW 11
#define SCRIPT_ARABIC 12
#define SCRIPT_BALTIC 13
#define SCRIPT_CYRILLIC 14
#define SCRIPT_THAI 15
#define SCRIPT_CENTRAL_EUROPE 16
#define SCRIPT_OEM_DOS 17
#define SCRIPT_UNKNOWN 18
#define NUMBER_OF_SCRIPTS SCRIPT_UNKNOWN + 1
|