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