home *** CD-ROM | disk | FTP | other *** search
/ What PC? 1996 May / WHAT_PC_MAY_96.ISO / mcoil / strings / strings.bkp < prev    next >
Encoding:
Text File  |  1994-06-29  |  2.8 KB  |  87 lines

  1. #
  2. ; New string compiler test file
  3. ;
  4. ; Source files MUST be standard ASCII text files. Each line MUST be
  5. ; terminated with either a CR,LF or CR or LF sequence.
  6. ;
  7. ; Ampersand, double quote, hash mark and greater/less than symbols
  8. ; are reserved characters.
  9. ;
  10. ; Rules :
  11. ;
  12. ;    Anything between a pair of hash marks (including hash marks) is
  13. ;    treated as comment text and discarded. Hash marked blocks have
  14. ;    highest priority and are ALWAYS processed even within quote markers.
  15. ;
  16. ;    Anything between a pair of double quotes excepting hash markers is
  17. ;    regarded as text to be compiled into the output data file.
  18. ;
  19. ;    Any control characters (hex value < 20Hex) and space and commas
  20. ;    (when not enclosed between two quote markers), are treated as
  21. ;    white space and discarded.
  22. ;
  23. ;    Less than symbol starts a string block.
  24. ;
  25. ;    First non white space string MUST be a four digit HEX number. This
  26. ;       is called the derivative string number.
  27. ;
  28. ;    Second non white space string is string block name. These string
  29. ;       block names can only include digits, alphabetic letters and
  30. ;       underscores.
  31. ;
  32. ;    Up to terminating greater than symbol are double quoted string
  33. ;       blocks which must be equal in number to the derivative string
  34. ;       number. These strings may be ANY length.
  35. ;
  36. ;    Look at the standard string definition STRING_TEST. This creates
  37. ;    space for eight derivative strings all associated with the label
  38. ;    STRING_TEST. Each derivate string is selected when the appropriate
  39. ;    spoken language is selected in the application program.
  40. ;
  41. ;    As a default the first string in the derivative list is ALWAYS
  42. ;    English. Subsequent derivative strings will be language variants
  43. ;    defined in the same order for each derivative string set.
  44. ;
  45. ; Command line syntax :
  46. ;
  47. ;    SRCCOMP <source file> <output header file>
  48. ;        <output data file> <output index file>
  49. ;
  50. ;    ALL file names MUST be specified as above!
  51. ;    ALL file types are assumed and must NOT be specified on command line!
  52. ;
  53. ;    <source file>        type .SRC
  54. ;    <output header file> type .H
  55. ;    <output data file>   type .DAT
  56. ;    <output index file>  type .IDX
  57. ;
  58. ;    File names may include full DOS path specifications.
  59. #
  60.  
  61. #
  62. ; STRING_NULL - Mandatory - Must be included exactly as below !!
  63. #
  64. <0001 STRING_NULL   "Null String">
  65.  
  66. #
  67. ; STRING_TEST - Mandatory - Must be included exactly as below !!
  68. #
  69. <0008 STRING_TEST   "Test001","Test002","Test003","Test004",
  70.             "Test005","Test006","Test007","Test008">
  71.  
  72. #
  73. ; Start placing your own strings here
  74. #
  75.  
  76. <0001 STRING_FONT_NAME "Current font ">
  77.  
  78. #
  79. ; End placing your own strings here
  80. #
  81.  
  82. #
  83. ; STRING_MAX - Mandatory - Must be included exactly as below !!
  84. #
  85.  
  86. <0001 STRING_MAX    "Max String">
  87.