KXStudio Website https://kx.studio/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

139 lines
5.4KB

  1. <?php
  2. /*************************************************************************************
  3. * 4cs.php
  4. * ------
  5. * Author: Jason Curl (jason.curl@continental-corporation.com)
  6. * Copyright: (c) 2009 Jason Curl
  7. * Release Version: 1.0.8.11
  8. * Date Started: 2009/09/05
  9. *
  10. * 4CS language file for GeSHi.
  11. *
  12. * CHANGES
  13. * -------
  14. * 2009/09/05
  15. * - First Release
  16. *
  17. * TODO (updated 2009/09/01)
  18. * -------------------------
  19. *
  20. *************************************************************************************
  21. *
  22. * This file is part of GeSHi.
  23. *
  24. * GeSHi is free software; you can redistribute it and/or modify
  25. * it under the terms of the GNU General Public License as published by
  26. * the Free Software Foundation; either version 2 of the License, or
  27. * (at your option) any later version.
  28. *
  29. * GeSHi is distributed in the hope that it will be useful,
  30. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  31. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  32. * GNU General Public License for more details.
  33. *
  34. * You should have received a copy of the GNU General Public License
  35. * along with GeSHi; if not, write to the Free Software
  36. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  37. *
  38. ************************************************************************************/
  39. $language_data = array (
  40. 'LANG_NAME' => 'GADV 4CS',
  41. 'COMMENT_SINGLE' => array(1 => "//"),
  42. 'COMMENT_MULTI' => array(),
  43. 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
  44. 'QUOTEMARKS' => array('"'),
  45. 'ESCAPE_CHAR' => '',
  46. 'KEYWORDS' => array(
  47. 1 => array(
  48. 'All', 'AllMatches', 'And', 'And_Filters', 'As', 'Asc', 'BasedOn',
  49. 'BestMatch', 'Block', 'Buffer', 'ByRef', 'ByVal', 'Call', 'Channel',
  50. 'Chr', 'Clear', 'Close', 'Confirm', 'Const', 'Continue', 'Cos',
  51. 'Critical', 'Declare', 'Default', 'DefaultChannel', 'DefaultDelayTime',
  52. 'DefaultReceiveMode', 'DefaultResponseTime', '#Define', 'DelayTime',
  53. 'Delete', 'Div', 'Else', '#Else', 'ElseIf', '#ElseIf', 'End', 'EndCritical',
  54. 'EndInlineC', 'EndFunction', 'EndIf', '#EndIf', 'EndInputList',
  55. 'EndLocalChannel', 'EndScenario', 'EndSub', 'EndWhile', 'Error',
  56. 'ErrorLevelOff', 'ErrorLevelOn', 'ErrorLevelSet', 'ErrorLevelSetRaw',
  57. 'Event', 'EventMode', 'EventOff', 'EventOn', 'EventSet', 'EventSetRaw',
  58. 'Execute', 'Exit', 'Exp', 'FileClose', 'FilterClear', 'FileEOF', 'FileOpen',
  59. 'FileRead', 'FileSize', 'FileWrite', 'FilterAdd', 'FilterMode',
  60. 'FilterOff', 'FilterOn', 'For', 'Format', 'Function', 'GoOnline', 'GoTo',
  61. 'Handle', 'Hide', 'If', '#If', '#IfDef', '#IfNDef', 'Ignore', '#Include',
  62. 'InlineC', 'Input', 'InputItem', 'InputList', 'Kill', 'LBound', 'LocalChannel',
  63. 'Local', 'Log', 'Log10', 'LogOff', 'LogOn', 'Loop', 'Message', 'Mod',
  64. 'MonitorChannel', 'MostFormat', 'MostMessage', 'Named', 'Never', 'Next',
  65. 'NoOrder', 'Not', 'Nothing', 'NoWait', 'Numeric', 'OnError', 'OnEvent',
  66. 'Or', 'Or_Filters', 'Order', 'Pass', 'Pow', 'Prototype', 'Quit', 'Raise',
  67. 'Random', 'Receive', 'ReceiveMode', 'ReceiveRaw', 'Redim', 'Remote', 'Repeat',
  68. 'Repeated', 'ResponseTime', 'Resume', 'ResumeCritical', 'RT_Common',
  69. 'RT_Dll_Call', 'RT_FILEIO', 'RT_General', 'RT_HardwareAccess',
  70. 'RT_MessageVariableAccess', 'RT_Scenario', 'RT_VariableAccess', 'Runtime',
  71. 'Scenario', 'ScenarioEnd', 'ScenarioStart', 'ScenarioStatus', 'ScenarioTerminate',
  72. 'Send', 'SendRaw', 'Set', 'SetError', 'Sin', 'Single', 'Show', 'Start',
  73. 'StartCritical', 'Starts', 'Static', 'Step', 'Stop', 'String', 'Sub',
  74. 'System_Error', 'TerminateAllChilds', 'Terminates', 'Then', 'Throw', 'TimeOut',
  75. 'To', 'TooLate', 'Trunc', 'UBound', 'Unexpected', 'Until', 'User_Error',
  76. 'View', 'Wait', 'Warning', 'While', 'XOr'
  77. ),
  78. 2 => array(
  79. 'alias', 'winapi', 'long', 'char', 'double', 'float', 'int', 'short', 'lib'
  80. )
  81. ),
  82. 'SYMBOLS' => array(
  83. '=', ':=', '<', '>', '<>'
  84. ),
  85. 'CASE_SENSITIVE' => array(
  86. GESHI_COMMENTS => false,
  87. 1 => false,
  88. 2 => false
  89. ),
  90. 'STYLES' => array(
  91. 'KEYWORDS' => array(
  92. 1 => 'color: #0000C0; font-weight: bold;',
  93. 2 => 'color: #808080;'
  94. ),
  95. 'COMMENTS' => array(
  96. 1 => 'color: #008000;'
  97. ),
  98. 'BRACKETS' => array(
  99. 0 => 'color: #000080;'
  100. ),
  101. 'STRINGS' => array(
  102. 0 => 'color: #800080;'
  103. ),
  104. 'NUMBERS' => array(
  105. 0 => 'color: #cc66cc;'
  106. ),
  107. 'METHODS' => array(
  108. 1 => 'color: #66cc66;'
  109. ),
  110. 'SYMBOLS' => array(
  111. 0 => 'color: #000080;'
  112. ),
  113. 'ESCAPE_CHAR' => array(
  114. 0 => 'color: #000099;'
  115. ),
  116. 'SCRIPT' => array(
  117. ),
  118. 'REGEXPS' => array(
  119. )
  120. ),
  121. 'URLS' => array(
  122. 1 => '',
  123. 2 => ''
  124. ),
  125. 'OOLANG' => true,
  126. 'OBJECT_SPLITTERS' => array(
  127. 1 => '.'
  128. ),
  129. 'REGEXPS' => array(
  130. ),
  131. 'STRICT_MODE_APPLIES' => GESHI_NEVER,
  132. 'SCRIPT_DELIMITERS' => array(
  133. ),
  134. 'HIGHLIGHT_STRICT_BLOCK' => array(
  135. )
  136. );
  137. ?>