home *** CD-ROM | disk | FTP | other *** search
- #
- ; New string compiler test file
- ;
- ; Source files MUST be standard ASCII text files. Each line MUST be
- ; terminated with either a CR,LF or CR or LF sequence.
- ;
- ; Ampersand, double quote, hash mark and greater/less than symbols
- ; are reserved characters.
- ;
- ; Rules :
- ;
- ; Anything between a pair of hash marks (including hash marks) is
- ; treated as comment text and discarded. Hash marked blocks have
- ; highest priority and are ALWAYS processed even within quote markers.
- ;
- ; Anything between a pair of double quotes excepting hash markers is
- ; regarded as text to be compiled into the output data file.
- ;
- ; Any control characters (hex value < 20Hex) and space and commas
- ; (when not enclosed between two quote markers), are treated as
- ; white space and discarded.
- ;
- ; Less than symbol starts a string block.
- ;
- ; First non white space string MUST be a four digit HEX number. This
- ; is called the derivative string number.
- ;
- ; Second non white space string is string block name. These string
- ; block names can only include digits, alphabetic letters and
- ; underscores.
- ;
- ; Up to terminating greater than symbol are double quoted string
- ; blocks which must be equal in number to the derivative string
- ; number. These strings may be ANY length.
- ;
- ; Look at the standard string definition STRING_TEST. This creates
- ; space for eight derivative strings all associated with the label
- ; STRING_TEST. Each derivate string is selected when the appropriate
- ; spoken language is selected in the application program.
- ;
- ; As a default the first string in the derivative list is ALWAYS
- ; English. Subsequent derivative strings will be language variants
- ; defined in the same order for each derivative string set.
- ;
- ; Command line syntax :
- ;
- ; SRCCOMP <source file> <output header file>
- ; <output data file> <output index file>
- ;
- ; ALL file names MUST be specified as above!
- ; ALL file types are assumed and must NOT be specified on command line!
- ;
- ; <source file> type .SRC
- ; <output header file> type .H
- ; <output data file> type .DAT
- ; <output index file> type .IDX
- ;
- ; File names may include full DOS path specifications.
- #
-
- #
- ; STRING_NULL - Mandatory - Must be included exactly as below !!
- #
- <0001 STRING_NULL "Null String">
-
- #
- ; STRING_TEST - Mandatory - Must be included exactly as below !!
- #
- <0008 STRING_TEST "Test001","Test002","Test003","Test004",
- "Test005","Test006","Test007","Test008">
-
- #
- ; Start placing your own strings here
- #
-
- <0001 STRING_FONT_NAME "Current font ">
-
- #
- ; End placing your own strings here
- #
-
- #
- ; STRING_MAX - Mandatory - Must be included exactly as below !!
- #
-
- <0001 STRING_MAX "Max String">
-