xref: /aoo42x/main/oox/source/dump/dumperbase.ini (revision cdf0e10c)
1*cdf0e10cSrcweir
2*cdf0e10cSrcweir# dumper settings ============================================================
3*cdf0e10cSrcweir#
4*cdf0e10cSrcweir# Basic concepts
5*cdf0e10cSrcweir#
6*cdf0e10cSrcweir# - Character encoding of dumper ini files is UTF-8.
7*cdf0e10cSrcweir# - Whitespace characters are generally stripped, e.g. at start and end of
8*cdf0e10cSrcweir#   lines, before/after equal signs, commas, etc.
9*cdf0e10cSrcweir# - Comments start with the hash (#) or semicolon (;) character. Leading
10*cdf0e10cSrcweir#   whitespace characters are ignored.
11*cdf0e10cSrcweir#
12*cdf0e10cSrcweir# ----------------------------------------------------------------------------
13*cdf0e10cSrcweir
14*cdf0e10cSrcweir# Enable entire dumper (default=off). This option does not affect the option
15*cdf0e10cSrcweir# 'enable-import'.
16*cdf0e10cSrcweir#   0=off, 1=on
17*cdf0e10cSrcweirenable-dumper=1
18*cdf0e10cSrcweir
19*cdf0e10cSrcweir# Enable import after dumping (default=on). Disabling this option allows
20*cdf0e10cSrcweir# to dump a file without loading it. This option is independent from the
21*cdf0e10cSrcweir# 'enable-dumper' option.
22*cdf0e10cSrcweir#   0=off, 1=on
23*cdf0e10cSrcweirenable-import=1
24*cdf0e10cSrcweir
25*cdf0e10cSrcweir# Maximum size of binary stream dumps (default=infinite).
26*cdf0e10cSrcweirmax-binary-stream-size=65536
27*cdf0e10cSrcweir
28*cdf0e10cSrcweir# Maximum size of binary data blocks in content dumps (default=infinite).
29*cdf0e10cSrcweirmax-binary-data-size=128
30*cdf0e10cSrcweir
31*cdf0e10cSrcweir# Shows unknown trailing data as binary dump (default=on).
32*cdf0e10cSrcweir#   0=off, 1=on
33*cdf0e10cSrcweirshow-trailing-unknown=1
34*cdf0e10cSrcweir
35*cdf0e10cSrcweir# Shows the absolute stream position of records in the record header field
36*cdf0e10cSrcweir# (default=on).
37*cdf0e10cSrcweir#   0=off, 1=on
38*cdf0e10cSrcweirshow-record-position=0
39*cdf0e10cSrcweir
40*cdf0e10cSrcweir# name lists =================================================================
41*cdf0e10cSrcweir#
42*cdf0e10cSrcweir# Syntax descriptions
43*cdf0e10cSrcweir#
44*cdf0e10cSrcweir# - Optional items are enclosed in brackets [].
45*cdf0e10cSrcweir# - Optional items that may be repeated are marked with an ellipsis (...).
46*cdf0e10cSrcweir# - Items in a set to choose from are separated by vertical lines (|).
47*cdf0e10cSrcweir# - <LISTNAME> denotes the name of a list. List names may consist of any non-
48*cdf0e10cSrcweir#   whitespace characters.
49*cdf0e10cSrcweir# - <value>, <firstvalue>, <bitfield>, <bitmask> etc. denote integer values.
50*cdf0e10cSrcweir#   Decimal and hexadecimal notation is supported, using C/C++ notation.
51*cdf0e10cSrcweir# - <bool> denotes a boolean value. Possible values are 0|1|false|true.
52*cdf0e10cSrcweir# - <constname> denotes a literal name for a constant or bit.
53*cdf0e10cSrcweir#
54*cdf0e10cSrcweir# ----------------------------------------------------------------------------
55*cdf0e10cSrcweir#
56*cdf0e10cSrcweir# constlist
57*cdf0e10cSrcweir#
58*cdf0e10cSrcweir# Defines names for a list of specific values.
59*cdf0e10cSrcweir#
60*cdf0e10cSrcweir# Syntax:
61*cdf0e10cSrcweir#
62*cdf0e10cSrcweir# constlist = <LISTNAME>
63*cdf0e10cSrcweir#   default = <constname>
64*cdf0e10cSrcweir#   include = <LISTNAME>[,<LISTNAME>...]
65*cdf0e10cSrcweir#   exclude = <value>[,<value>...]
66*cdf0e10cSrcweir#   quote-names = <bool>
67*cdf0e10cSrcweir#   <value> = <constname>
68*cdf0e10cSrcweir# end
69*cdf0e10cSrcweir#
70*cdf0e10cSrcweir# - default (optional): Declares <constname> as a default name for values not
71*cdf0e10cSrcweir#   specified in the name list. <constname> may be the empty string. If not
72*cdf0e10cSrcweir#   set, the literal string '?err:no-name' (unquoted) is the default name.
73*cdf0e10cSrcweir# - include (optional): Includes the specified name list(s) into the own list.
74*cdf0e10cSrcweir# - exclude (optional): Removes values from the name lists, useful e.g. after
75*cdf0e10cSrcweir#   a name list has been included.
76*cdf0e10cSrcweir# - quote-names (optional): Specifies whether to return the contained names
77*cdf0e10cSrcweir#   enclosed in single quote (') characters. Default is false.
78*cdf0e10cSrcweir#
79*cdf0e10cSrcweir# The order of the declarations is important, later declarations may overwrite
80*cdf0e10cSrcweir# names generated from earlier declarations.
81*cdf0e10cSrcweir#
82*cdf0e10cSrcweir# Example:
83*cdf0e10cSrcweir#
84*cdf0e10cSrcweir# constlist = EXAMPLE-CONSTLIST
85*cdf0e10cSrcweir#   1 = my-value
86*cdf0e10cSrcweir#   include = OTHER-LIST
87*cdf0e10cSrcweir#   exclude = 2,3
88*cdf0e10cSrcweir#   0x0004 = other-value
89*cdf0e10cSrcweir# end
90*cdf0e10cSrcweir#
91*cdf0e10cSrcweir# - Defines the name 'my-value' for the constant 1.
92*cdf0e10cSrcweir# - Includes 'OTHER-LIST' which may overwrite the name of the constant 1.
93*cdf0e10cSrcweir# - Excludes the names of constants 2 and 3, which may have been included from
94*cdf0e10cSrcweir#   the name list 'OTHER-LIST'.
95*cdf0e10cSrcweir# - Defines the name 'other-value' for the constant 4, which may overwrite the
96*cdf0e10cSrcweir#   name of this constant included from the name list 'OTHER-LIST'.
97*cdf0e10cSrcweir#
98*cdf0e10cSrcweir# ----------------------------------------------------------------------------
99*cdf0e10cSrcweir#
100*cdf0e10cSrcweir# multilist
101*cdf0e10cSrcweir#
102*cdf0e10cSrcweir# Defines names for contiguous ranges of values.
103*cdf0e10cSrcweir#
104*cdf0e10cSrcweir# Syntax:
105*cdf0e10cSrcweir#
106*cdf0e10cSrcweir# multilist = <LISTNAME>
107*cdf0e10cSrcweir#   default = <constname>
108*cdf0e10cSrcweir#   include = <LISTNAME>[,<LISTNAME>...]
109*cdf0e10cSrcweir#   exclude = <value>[,<value>...]
110*cdf0e10cSrcweir#   ignore-empty = <bool>
111*cdf0e10cSrcweir#   <firstvalue> = <constname>[,<constname>...]
112*cdf0e10cSrcweir# end
113*cdf0e10cSrcweir#
114*cdf0e10cSrcweir# - default (optional): See constlist above.
115*cdf0e10cSrcweir# - include (optional): See constlist above.
116*cdf0e10cSrcweir# - exclude (optional): See constlist above.
117*cdf0e10cSrcweir# - ignore-empty (optional): Specifies whether to skip empty names in a list.
118*cdf0e10cSrcweir#   - True = skips an empty entry, the default name will be generated.
119*cdf0e10cSrcweir#   - False = creates an empty string for the entry.
120*cdf0e10cSrcweir#   Default is true (skip empty entries).
121*cdf0e10cSrcweir#
122*cdf0e10cSrcweir# Examples:
123*cdf0e10cSrcweir#
124*cdf0e10cSrcweir# multilist = EXAMPLE-MULTILIST
125*cdf0e10cSrcweir#   0 = value0,value1,,value3
126*cdf0e10cSrcweir#   8 = value8
127*cdf0e10cSrcweir# end
128*cdf0e10cSrcweir#
129*cdf0e10cSrcweir# - Defines the names 'value0' for the constant 0, 'value1' for the constant
130*cdf0e10cSrcweir#   1, 'value3' for the constant 3, and 'value8' for the constant 8.
131*cdf0e10cSrcweir#
132*cdf0e10cSrcweir# multilist = EXAMPLE-MULTILIST-2
133*cdf0e10cSrcweir#   include = EXAMPLE-MULTILIST
134*cdf0e10cSrcweir#   ignore-empty = false
135*cdf0e10cSrcweir#   default = other
136*cdf0e10cSrcweir# end
137*cdf0e10cSrcweir#
138*cdf0e10cSrcweir# - Same as example above (includes EXAMPLE-MULTILIST), but defines the empty
139*cdf0e10cSrcweir#   string for the constant 2. Other constants (less than 0 or greater than 3
140*cdf0e10cSrcweir#   and not equal to 8) get the default name 'other'.
141*cdf0e10cSrcweir#
142*cdf0e10cSrcweir# ----------------------------------------------------------------------------
143*cdf0e10cSrcweir#
144*cdf0e10cSrcweir# shortlist
145*cdf0e10cSrcweir#
146*cdf0e10cSrcweir# Defines names for a contiguous range of values. The entire list definition
147*cdf0e10cSrcweir# is given in a single text line.
148*cdf0e10cSrcweir#
149*cdf0e10cSrcweir# Syntax:
150*cdf0e10cSrcweir#
151*cdf0e10cSrcweir# shortlist = <LISTNAME>,<firstvalue>,<constname>[,<constname>...]
152*cdf0e10cSrcweir#
153*cdf0e10cSrcweir# Uses default settings of the multi-list (i.e. skips empty entries).
154*cdf0e10cSrcweir#
155*cdf0e10cSrcweir# ----------------------------------------------------------------------------
156*cdf0e10cSrcweir#
157*cdf0e10cSrcweir# flagslist
158*cdf0e10cSrcweir#
159*cdf0e10cSrcweir# Defines names for single bits in a bit field.
160*cdf0e10cSrcweir#
161*cdf0e10cSrcweir# Syntax:
162*cdf0e10cSrcweir#
163*cdf0e10cSrcweir# flagslist = <LISTNAME>
164*cdf0e10cSrcweir#   include = <LISTNAME>[,<LISTNAME>...]
165*cdf0e10cSrcweir#   exclude = <bitfield>[,<bitfield>...]
166*cdf0e10cSrcweir#   ignore = <bitfield>
167*cdf0e10cSrcweir#   <bitmask> = <cname> | !<cname> | :<cname> | !<cname0>!<cname1>
168*cdf0e10cSrcweir# end
169*cdf0e10cSrcweir#
170*cdf0e10cSrcweir# - include (optional): See constlist above.
171*cdf0e10cSrcweir# - exclude (optional): See constlist above.
172*cdf0e10cSrcweir# - ignore (optional): Specifies bits to be ignored. Bits without an explicit
173*cdf0e10cSrcweir#   name and not set in this declaration will be shown as unknown. Default is
174*cdf0e10cSrcweir#   to not ignore a bit.
175*cdf0e10cSrcweir# - <bitmask>: The bit to be named. Must be a value with a single bit set.
176*cdf0e10cSrcweir#   - <cname> - Sets a name for the bit that will be shown if the bit is set.
177*cdf0e10cSrcweir#     Does not show anything if the bit is cleared.
178*cdf0e10cSrcweir#   - !<cname> - Sets a name for the bit that will be shown if the bit is
179*cdf0e10cSrcweir#     cleared. Does not show anything if the bit is set.
180*cdf0e10cSrcweir#   - :<cname> - Sets a name for the bit that will always be shown together
181*cdf0e10cSrcweir#     with the actual state of the bit, appended as ':on' or ':off'.
182*cdf0e10cSrcweir#   - !<cname0>!<cname1> - Sets a name for both the cleared bit (cname0), and
183*cdf0e10cSrcweir#     for the set bit (cname1).
184*cdf0e10cSrcweir#
185*cdf0e10cSrcweir# ----------------------------------------------------------------------------
186*cdf0e10cSrcweir#
187*cdf0e10cSrcweir# combilist
188*cdf0e10cSrcweir#
189*cdf0e10cSrcweir# Defines names for single bits and for embedded values in a bit field. This
190*cdf0e10cSrcweir# is an extension of the flagslist described above.
191*cdf0e10cSrcweir#
192*cdf0e10cSrcweir# Syntax:
193*cdf0e10cSrcweir#
194*cdf0e10cSrcweir# combilist = <LISTNAME>
195*cdf0e10cSrcweir#   include = <LISTNAME>[,<LISTNAME>...]
196*cdf0e10cSrcweir#   exclude = <bitmask>[,<bitmask>...]
197*cdf0e10cSrcweir#   ignore = <bitfield>
198*cdf0e10cSrcweir#   <bitmask> = <cname> | !<cname> | :<cname> | !<cname0>!<cname1>
199*cdf0e10cSrcweir#   <bitfield> = <datatype>,<dataformat>,<bitfieldname>[,<LISTNAME>[,options...]]
200*cdf0e10cSrcweir# end
201*cdf0e10cSrcweir#
202*cdf0e10cSrcweir# - include (optional): See constlist above.
203*cdf0e10cSrcweir# - exclude (optional): See constlist above.
204*cdf0e10cSrcweir# - ignore (optional): See flagslist above.
205*cdf0e10cSrcweir# - <bitmask>: See flagslist above.
206*cdf0e10cSrcweir# - <bitfield>: The mask of the embedded bitfield. Must be a value with
207*cdf0e10cSrcweir#   exactly one sequence of at least 2 consecutive bits.
208*cdf0e10cSrcweir#   - <datatype>: [u]int8 | [u]int16 | [u]int32 | [u]int64 | float | double
209*cdf0e10cSrcweir#   - <dataformat>: dec | hex | shorthex | bin | fix | bool
210*cdf0e10cSrcweir#   - <bitfieldname>: The name of the embedded bitfield.
211*cdf0e10cSrcweir#   - <LISTAME>: Optional name list with names for the values of the embedded
212*cdf0e10cSrcweir#     bitfield.
213*cdf0e10cSrcweir#   - options: Additional options for this bitfield:
214*cdf0e10cSrcweir#     - filter = <filterbitfield>~<filtervalue>: If set, the entire bitfield
215*cdf0e10cSrcweir#       will only be written, if the complete data item currently dumped
216*cdf0e10cSrcweir#       contains exactly the value specified in <filtervalue> in the bitfield
217*cdf0e10cSrcweir#       specified in <filterbitfield>. Otherwise, nothing is written. It is
218*cdf0e10cSrcweir#       possible to specify multiple filter rules for this bitfield. In that
219*cdf0e10cSrcweir#       case, the bitfield will be written, if at least one filter rule
220*cdf0e10cSrcweir#       applies for the current data item.
221*cdf0e10cSrcweir#     - noshift = <bool>: If set to 'true', the extracted value will be
222*cdf0e10cSrcweir#       shifted to the right (normalized). If set to 'false', the value will
223*cdf0e10cSrcweir#       be written unshifted. Default is 'true'.
224*cdf0e10cSrcweir#
225*cdf0e10cSrcweir# ----------------------------------------------------------------------------
226*cdf0e10cSrcweir#
227*cdf0e10cSrcweir# unitconverter
228*cdf0e10cSrcweir#
229*cdf0e10cSrcweir# Converts values and appends a unit name.
230*cdf0e10cSrcweir#
231*cdf0e10cSrcweir# Syntax:
232*cdf0e10cSrcweir#
233*cdf0e10cSrcweir# unitconverter = <LISTNAME>,[/]<factor>[,<unitname>]
234*cdf0e10cSrcweir#
235*cdf0e10cSrcweir# ----------------------------------------------------------------------------
236*cdf0e10cSrcweir
237*cdf0e10cSrcweirunitconverter=CONV-DEC,1
238*cdf0e10cSrcweirunitconverter=CONV-PERCENT,1,%
239*cdf0e10cSrcweirunitconverter=CONV-FLOAT-TO-PERC,100,%
240*cdf0e10cSrcweirunitconverter=CONV-DEG,1,°
241*cdf0e10cSrcweirunitconverter=CONV-HMM-TO-CM,/1000,cm
242*cdf0e10cSrcweirunitconverter=CONV-INCH-TO-CM,2.54,cm
243*cdf0e10cSrcweirunitconverter=CONV-PT-TO-CM,/28.346457,cm
244*cdf0e10cSrcweirunitconverter=CONV-PT1616-TO-CM,/1857713.4,cm
245*cdf0e10cSrcweirunitconverter=CONV-TWIP-TO-CM,/566.92913,cm
246*cdf0e10cSrcweirunitconverter=CONV-TWIP-TO-PT,/20,pt
247*cdf0e10cSrcweirunitconverter=CONV-EMU-TO-CM,/36000,cm
248*cdf0e10cSrcweir
249*cdf0e10cSrcweirconstlist=BOOLEAN
250*cdf0e10cSrcweir  0=FALSE
251*cdf0e10cSrcweir  default=TRUE
252*cdf0e10cSrcweirend
253*cdf0e10cSrcweir
254*cdf0e10cSrcweircombilist=RK-FLAGS
255*cdf0e10cSrcweir  0x00000001=div-100
256*cdf0e10cSrcweir  0x00000002=integer
257*cdf0e10cSrcweir  0xFFFFFFFC=int32,hex,value
258*cdf0e10cSrcweirend
259*cdf0e10cSrcweir
260*cdf0e10cSrcweirconstlist=CHARSET
261*cdf0e10cSrcweir  0=win-1252-latin-1
262*cdf0e10cSrcweir  1=system-default
263*cdf0e10cSrcweir  2=symbol
264*cdf0e10cSrcweir  77=apple-roman
265*cdf0e10cSrcweir  128=win-932-japanese-shift-jis
266*cdf0e10cSrcweir  129=win-949-korean-hangul
267*cdf0e10cSrcweir  130=win-1361-korean-johab
268*cdf0e10cSrcweir  134=win-936-chinese-simplified-gbk
269*cdf0e10cSrcweir  136=win-950-chinese-traditional-big5
270*cdf0e10cSrcweir  161=win-1253-greek
271*cdf0e10cSrcweir  162=win-1254-turkish
272*cdf0e10cSrcweir  163=win-1258-vietnamese
273*cdf0e10cSrcweir  177=win-1255-hebrew
274*cdf0e10cSrcweir  178=win-1256-arabic
275*cdf0e10cSrcweir  186=win-1257-baltic
276*cdf0e10cSrcweir  204=win-1251-cyrillic
277*cdf0e10cSrcweir  222=win-874-thai
278*cdf0e10cSrcweir  238=win-1250-latin-2-central-european
279*cdf0e10cSrcweir  255=ibm-850-latin-1
280*cdf0e10cSrcweirend
281*cdf0e10cSrcweir
282*cdf0e10cSrcweircombilist=FONT-PITCHFAMILY
283*cdf0e10cSrcweir  0x0F=uint8,dec,pitch,FONT-PITCH
284*cdf0e10cSrcweir  0xF0=uint8,dec,family,FONT-FAMILY
285*cdf0e10cSrcweirend
286*cdf0e10cSrcweir
287*cdf0e10cSrcweirconstlist=FONT-WEIGHT
288*cdf0e10cSrcweir  400=normal
289*cdf0e10cSrcweir  700=bold
290*cdf0e10cSrcweirend
291*cdf0e10cSrcweir
292*cdf0e10cSrcweirshortlist=FONT-PITCH,0,unknown,fixed,variable
293*cdf0e10cSrcweirshortlist=FONT-FAMILY,0,unknown,roman,swiss,modern,script,decorative
294*cdf0e10cSrcweir
295*cdf0e10cSrcweirconstlist=CODEPAGES
296*cdf0e10cSrcweir  367=ascii
297*cdf0e10cSrcweir  437=ibm-437-us
298*cdf0e10cSrcweir  708=iso-8859-6
299*cdf0e10cSrcweir  720=ibm-720-arabic
300*cdf0e10cSrcweir  737=ibm-737-greek
301*cdf0e10cSrcweir  775=ibm-775-baltic
302*cdf0e10cSrcweir  850=ibm-850-latin-1
303*cdf0e10cSrcweir  852=ibm-852-latin-2-central-european
304*cdf0e10cSrcweir  855=ibm-855-cyrillic
305*cdf0e10cSrcweir  857=ibm-857-turkish
306*cdf0e10cSrcweir  858=ibm-858-multilingual-latin-1-with-euro
307*cdf0e10cSrcweir  860=ibm-860-portuguese
308*cdf0e10cSrcweir  861=ibm-861-icelandic
309*cdf0e10cSrcweir  862=ibm-862-hebrew
310*cdf0e10cSrcweir  863=ibm-863-canadian-french
311*cdf0e10cSrcweir  864=ibm-864-arabic
312*cdf0e10cSrcweir  865=ibm-865-nordic
313*cdf0e10cSrcweir  866=ibm-866-cyrillic-russian
314*cdf0e10cSrcweir  869=ibm-869-greek-modern
315*cdf0e10cSrcweir  874=win-874-thai
316*cdf0e10cSrcweir  932=win-932-japanese-shift-jis
317*cdf0e10cSrcweir  936=win-936-chinese-simplified-gbk
318*cdf0e10cSrcweir  949=win-949-korean-wansung
319*cdf0e10cSrcweir  950=win-950-chinese-traditional-big5
320*cdf0e10cSrcweir  1200=utf-16
321*cdf0e10cSrcweir  1250=win-1250-latin-2-central-european
322*cdf0e10cSrcweir  1251=win-1251-cyrillic
323*cdf0e10cSrcweir  1252=win-1252-latin-1
324*cdf0e10cSrcweir  1253=win-1253-greek
325*cdf0e10cSrcweir  1254=win-1254-turkish
326*cdf0e10cSrcweir  1255=win-1255-hebrew
327*cdf0e10cSrcweir  1256=win-1256-arabic
328*cdf0e10cSrcweir  1257=win-1257-baltic
329*cdf0e10cSrcweir  1258=win-1258-vietnamese
330*cdf0e10cSrcweir  1361=win-1361-korean-johab
331*cdf0e10cSrcweir  10000=apple-roman
332*cdf0e10cSrcweir  10001=apple-japanese
333*cdf0e10cSrcweir  10002=apple-chinese-traditional
334*cdf0e10cSrcweir  10003=apple-korean
335*cdf0e10cSrcweir  10004=apple-arabic
336*cdf0e10cSrcweir  10005=apple-hebrew
337*cdf0e10cSrcweir  10006=apple-greek
338*cdf0e10cSrcweir  10007=apple-cyrillic
339*cdf0e10cSrcweir  10008=apple-chinese-simplified
340*cdf0e10cSrcweir  10010=apple-romanian
341*cdf0e10cSrcweir  10017=apple-ukrainian
342*cdf0e10cSrcweir  10029=apple-central-european-with-euro
343*cdf0e10cSrcweir  10079=apple-icelandic
344*cdf0e10cSrcweir  10081=apple-turkish
345*cdf0e10cSrcweir  10082=apple-croatian
346*cdf0e10cSrcweir  20127=ascii
347*cdf0e10cSrcweir  20866=koi8-r
348*cdf0e10cSrcweir  21866=koi8-u
349*cdf0e10cSrcweir  28591=iso-8859-1
350*cdf0e10cSrcweir  28592=iso-8859-2
351*cdf0e10cSrcweir  28593=iso-8859-3
352*cdf0e10cSrcweir  28594=iso-8859-4
353*cdf0e10cSrcweir  28595=iso-8859-5
354*cdf0e10cSrcweir  28596=iso-8859-6
355*cdf0e10cSrcweir  28597=iso-8859-7
356*cdf0e10cSrcweir  28598=iso-8859-8
357*cdf0e10cSrcweir  28599=iso-8859-9
358*cdf0e10cSrcweir  28605=iso-8859-15
359*cdf0e10cSrcweir  32768=apple-romanian
360*cdf0e10cSrcweir  32769=win-1252-latin-1
361*cdf0e10cSrcweir  50220=iso-2022-jp
362*cdf0e10cSrcweir  50225=iso-2022-kr
363*cdf0e10cSrcweir  51932=euc-jp
364*cdf0e10cSrcweir  51936=euc-cn
365*cdf0e10cSrcweir  51949=euc-kr
366*cdf0e10cSrcweir  65000=utf-7
367*cdf0e10cSrcweir  65001=utf-8
368*cdf0e10cSrcweirend
369*cdf0e10cSrcweir
370*cdf0e10cSrcweirmultilist=COUNTRY
371*cdf0e10cSrcweir  1=usa,canada,latin-america,,,,russia
372*cdf0e10cSrcweir  20=egypt
373*cdf0e10cSrcweir  30=greece,netherlands,belgium,france,spain,,hungary,,,italy
374*cdf0e10cSrcweir  40=,switzerland,,austria,uk,denmark,sweden,norway,poland,germany
375*cdf0e10cSrcweir  50=,,mexico,,,brazil
376*cdf0e10cSrcweir  60=,australia,,,new-zealand,,thailand
377*cdf0e10cSrcweir  80=,japan,korea,,vietnam,,china
378*cdf0e10cSrcweir  90=turkey
379*cdf0e10cSrcweir  210=,,,algeria,,,morocco,,libya
380*cdf0e10cSrcweir  350=,portugal,,,iceland,,,,finland
381*cdf0e10cSrcweir  420=czech
382*cdf0e10cSrcweir  880=,,,,,,taiwan
383*cdf0e10cSrcweir  960=,lebanon,jordan,syria,iraq,kuwait,saudi-arabia
384*cdf0e10cSrcweir  970=,uae,israel,,qatar
385*cdf0e10cSrcweir  980=,iran
386*cdf0e10cSrcweirend
387*cdf0e10cSrcweir
388*cdf0e10cSrcweirmultilist=SYSTEMCOLOR
389*cdf0e10cSrcweir  0x00=scrollbar,desktop,active-title,inactive-title,menu,window-back,window-frame,menu-text
390*cdf0e10cSrcweir  0x08=window-text,active-title-text,active-border,inactive-border,app-workspace,highlight,highlight-text,button-face
391*cdf0e10cSrcweir  0x10=button-shadow,disabled-text,button-text,inactive-title-text,button-highlight,button-dark-shadow,button-light-shadow,tooltip-text
392*cdf0e10cSrcweir  0x18=tooltip-back,,hot-light,active-title-2,inactive-title-2,menu-highlight,menubar
393*cdf0e10cSrcweirend
394*cdf0e10cSrcweir
395*cdf0e10cSrcweir# ============================================================================
396