blob: 1cbb13839efc1ec375fc76c271412cc327b557a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
/************************************************************/
/* Windows Write, Copyright 1985-1992 Microsoft Corporation */
/************************************************************/
/* ****************************************************************************
**
** COPYRIGHT (C) 1985 MICROSOFT
**
** ****************************************************************************
*
* Module: globdefs.h - text for static arrays and other uses. Change this
* module when internationalizing.
*
* Functions included: none
*
**
** REVISIONS
**
** Date Who Rel Ver Remarks
** 10/20/89 fgd Win 3.0. Some defines have been moved to write.rc
** 07/08/86 yy addition of reverse string for unit parsing.
** 11/20/85 bz initial version
**
** ***************************************************************************/
/* NOTE NOTE NOTE
Win 3.0. In order to easy the localization of Write, some string defines
have been removed from here and placed into write.rc
*/
#define utDefault utCm /* used to set utCur - may be utInch or utCm */
#define vzaTabDfltDef (czaInch / 2) /* width of default tab in twips */
/* note that czaCm is also available */
#define szExtWordDocDef ".DOC"
#define szExtWordBakDef ".BAK"
#define szExtDrvDef ".drv"
#define szExtGlsDef ".GLS"
#ifdef KINTL
#define szExtDocDef ".WRI" /* this and next extension should be the same */
#define szExtSearchDef "\\*.WRI" /* store default search spec */
#define szExtBackupDef ".BKP"
#else
#define szExtDocDef ".DOC" /* This and next extension should be the same */
#define szExtSearchDef "\\*.DOC" /* Store default search spec. */
#define szExtBackupDef ".BAK"
#endif /* if-else-def INTL */
#define szWriteProductDef "MSWrite" /* WIN.INI: our app entry */
#define szFontEntryDef "Fontx" /* WIN.INI: our font list */
#define szSepNameDef " - " /* Separates AppName from file name in header */
#ifdef STYLES
#define szSshtEmpty "NORMAL.STY"
#endif /* STYLES */
/* Strings for parsing the user profile. */
#define szWindowsDef "windows"
#define szDeviceDef "Device"
#define szDevicesDef "devices"
#define szBackupDef "Backup"
/* used to get decimal point character from user profile */
#define szIntlDef "intl"
#define szsDecimalDef "sDecimal"
#define szsDecimalDefaultDef "."
#define sziCountryDef "iCountry"
/* see msdos manual for meaning of codes */
/* Strings for our window classes (MUST BE < 39 CHARS) */
#define szParentClassDef "MSWRITE_MENU"
#define szDocClassDef "MSWRITE_DOC"
#define szRulerClassDef "MSWRITE_RULER"
#define szPageInfoClassDef "MSWRITE_PAGEINFO"
#ifdef ONLINEHELP
#define szHelpDocClassDef "MSWRITE_HELPDOC"
#endif
/* used in fileutil.c - name of temp file */
#ifdef INTL
#define szMWTempDef "~WRI0000.TMP"
#else
#define szMWTempDef "~DOC0000.TMP"
#endif
/* used in fontenum.c */
#define szSystemDef "System"
#ifdef DBCS_VERT /* was in JAPAN, changed it to DBCS */
// Vertical orientation systemfont facename [yutakan:08/09/91]
#define szAtSystemDef "@System"
#endif
/* used in initwin.c */
#define szMw_acctbDef "mw_acctb"
#define szNullPortDef "NullPort"
#define szMwloresDef "mwlores"
#define szMwhiresDef "mwhires"
#define szMw_iconDef "mw_icon"
#define szMw_menuDef "mw_menu"
#define szScrollBarDef "ScrollBar"
/* used in pictdrag.c */
#define szPmsCurDef "pmscur"
/* used in screen.c - available font family names */
#define szModernDef "Modern"
#define szRomanDef "Roman"
#define szSwissDef "Swiss"
#define szScriptDef "Script"
#define szDecorativeDef "Decorative"
/* used in util2.c abbreviations for units */
|