* */ @define( "SCINTILLA_INVALID_POSITION" , -1 ); // GtkScintillaEolMode @define( "SCINTILLA_EOL_CRLF" , 0 ); @define( "SCINTILLA_EOL_CR" , 1 ); @define( "SCINTILLA_EOL_LF" , 2 ); // GtkScintillaMarginType @define( "SCINTILLA_MARGIN_SYMBOL" , 0 ); @define( "SCINTILLA_MARGIN_NUMBER" , 1 ); // GtkScintillaEdgeMode @define( "SCINTILLA_EDGE_NONE" , 0 ); @define( "SCINTILLA_EDGE_LINE" , 1 ); @define( "SCINTILLA_EDGE_BACKGROUND" , 2 ); // Find flags @define( "SCINTILLA_FIND_DOWN" , 1 ); @define( "SCINTILLA_FIND_WHOLE_WORDS" , 2 ); @define( "SCINTILLA_FIND_MATCH_CASE" , 4 ); @define( "SCINTILLA_FIND_WORD_START" , 0x00100000 ); @define( "SCINTILLA_FIND_REGEXP" , 0x00200000 ); // GtkScintillaLexer @define( "SCINTILLA_LEXER_CONTAINER" , 0 ); @define( "SCINTILLA_LEXER_NULL" , 1 ); @define( "SCINTILLA_LEXER_PYTHON" , 2 ); @define( "SCINTILLA_LEXER_CPP" , 3 ); @define( "SCINTILLA_LEXER_HTML" , 4 ); @define( "SCINTILLA_LEXER_XML" , 5 ); @define( "SCINTILLA_LEXER_PERL" , 6 ); @define( "SCINTILLA_LEXER_SQL" , 7 ); @define( "SCINTILLA_LEXER_VB" , 8 ); @define( "SCINTILLA_LEXER_PROPERTIES" , 9 ); @define( "SCINTILLA_LEXER_ERRORLIST" , 10 ); @define( "SCINTILLA_LEXER_MAKEFILE" , 11 ); @define( "SCINTILLA_LEXER_BATCH" , 12 ); @define( "SCINTILLA_LEXER_XCODE" , 13 ); @define( "SCINTILLA_LEXER_LATEX" , 14 ); @define( "SCINTILLA_LEXER_LUA" , 15 ); @define( "SCINTILLA_LEXER_DIFF" , 16 ); @define( "SCINTILLA_LEXER_CONF" , 17 ); @define( "SCINTILLA_LEXER_PASCAL" , 18 ); @define( "SCINTILLA_LEXER_AVE" , 19 ); @define( "SCINTILLA_LEXER_ADA" , 20 ); // GtkScintillaStyle @define( "SCINTILLA_STYLE_DEFAULT" , 32 ); @define( "SCINTILLA_STYLE_LINE_NUMBER" , 33 ); @define( "SCINTILLA_STYLE_BRACE_LIGHT" , 34 ); @define( "SCINTILLA_STYLE_BRACE_BAD" , 35 ); @define( "SCINTILLA_STYLE_CONTROL_CHAR" , 36 ); @define( "SCINTILLA_STYLE_INDENT_GUIDE" , 37 ); @define( "SCINTILLA_STYLE_MAX" , 127 ); // LEXER_PYTHON lexical states @define( "SCINTILLA_PYTHON_WHITE_SPACE" , 0 ); @define( "SCINTILLA_PYTHON_COMMENT_LINE" , 1 ); @define( "SCINTILLA_PYTHON_NUMBER" , 2 ); @define( "SCINTILLA_PYTHON_STRING_DOUBLE" , 3 ); @define( "SCINTILLA_PYTHON_STRING_SINGLE" , 4 ); @define( "SCINTILLA_PYTHON_KEYWORD" , 5 ); @define( "SCINTILLA_PYTHON_TRIPLE_SINGLE" , 6 ); @define( "SCINTILLA_PYTHON_TRIPLE_DOUBLE" , 7 ); @define( "SCINTILLA_PYTHON_CLASS_STATEMENT" , 8 ); @define( "SCINTILLA_PYTHON_DEF_STATEMENT" , 9 ); @define( "SCINTILLA_PYTHON_OPERATOR" , 10 ); @define( "SCINTILLA_PYTHON_IDENTIFIER" , 11 ); @define( "SCINTILLA_PYTHON_COMMENT_BLOCK" , 12 ); @define( "SCINTILLA_PYTHON_STRING_EOL" , 13 ); // LEXER_CPP Lexical states @define( "SCINTILLA_CPP_WHITE_SPACE" , 0 ); @define( "SCINTILLA_CPP_COMMENT_BLOCK" , 1 ); @define( "SCINTILLA_CPP_COMMENT_LINE" , 2 ); @define( "SCINTILLA_CPP_COMMENT_DOC" , 3 ); @define( "SCINTILLA_CPP_NUMBER" , 4 ); @define( "SCINTILLA_CPP_KEYWORD" , 5 ); @define( "SCINTILLA_CPP_STRING" , 6 ); @define( "SCINTILLA_CPP_CHARACTER" , 7 ); @define( "SCINTILLA_CPP_UUID" , 8 ); @define( "SCINTILLA_CPP_PREPROCESSOR" , 9 ); @define( "SCINTILLA_CPP_OPERATOR" , 10 ); @define( "SCINTILLA_CPP_IDENTIFIER" , 11 ); @define( "SCINTILLA_CPP_STRING_EOL" , 12 ); @define( "SCINTILLA_CPP_STRING_VERBATIM" , 13 ); @define( "SCINTILLA_CPP_REGEX" , 14 ); @define( "SCINTILLA_CPP_COMMENT_LINE_DOC" , 15 ); @define( "SCINTILLA_CPP_WORD2" , 16 ); @define( "SCINTILLA_CPP_COMMENT_DOC_KEYWORD" , 17 ); @define( "SCINTILLA_CPP_COMMENT_DOC_KEYWORD_ERROR" , 18 ); // LEXER_HTML Lexical states @define( "SCINTILLA_HTML_TEXT" , 0 ); @define( "SCINTILLA_HTML_TAG" , 1 ); @define( "SCINTILLA_HTML_TAG_UNKNOWN" , 2 ); @define( "SCINTILLA_HTML_ATTRIBUTE" , 3 ); @define( "SCINTILLA_HTML_ATTRIBUTE_UNKNOWN" , 4 ); @define( "SCINTILLA_HTML_NUMBER" , 5 ); @define( "SCINTILLA_HTML_DOUBLE_STRING" , 6 ); @define( "SCINTILLA_HTML_SINGLE_STRING" , 7 ); @define( "SCINTILLA_HTML_OTHER" , 8 ); @define( "SCINTILLA_HTML_COMMENT" , 9 ); @define( "SCINTILLA_HTML_ENTITY" , 10 ); @define( "SCINTILLA_HTML_XML_TAG_END" , 11 ); @define( "SCINTILLA_HTML_XML_ID_START" , 12 ); @define( "SCINTILLA_HTML_XML_ID_END" , 13 ); @define( "SCINTILLA_HTML_SCRIPT" , 14 ); @define( "SCINTILLA_HTML_ASP_1" , 15 ); @define( "SCINTILLA_HTML_ASP_2" , 16 ); @define( "SCINTILLA_HTML_CDATA" , 17 ); @define( "SCINTILLA_HTML_PHP" , 18 ); @define( "SCINTILLA_HTML_UNQUOTED" , 19 ); // LEXER HTML :: Embedded Javascript @define( "SCINTILLA_HTML_JS_START" , 40 ); @define( "SCINTILLA_HTML_JS_DEFAULT" , 41 ); @define( "SCINTILLA_HTML_JS_COMMENT_BLOCK" , 42 ); @define( "SCINTILLA_HTML_JS_COMMENT_LINE" , 43 ); @define( "SCINTILLA_HTML_JS_COMMENT_DOC" , 44 ); @define( "SCINTILLA_HTML_JS_NUMBER" , 45 ); @define( "SCINTILLA_HTML_JS_WORD" , 46 ); @define( "SCINTILLA_HTML_JS_KEYWORD" , 47 ); @define( "SCINTILLA_HTML_JS_STRING_DOUBLE" , 48 ); @define( "SCINTILLA_HTML_JS_STRING_SINGLE" , 49 ); @define( "SCINTILLA_HTML_JS_SYMBOL" , 50 ); @define( "SCINTILLA_HTML_JS_EOL" , 51 ); @define( "SCINTILLA_HTML_JS_REGEX" , 52 ); // LEXER_HTML :: ASP Javascript @define( "SCINTILLA_HTML_ASPJS_START" , 55 ); @define( "SCINTILLA_HTML_ASPJS_DEFAULT" , 56 ); @define( "SCINTILLA_HTML_ASPJS_COMMENT_BLOCK" , 57 ); @define( "SCINTILLA_HTML_ASPJS_COMMENT_LINE" , 58 ); @define( "SCINTILLA_HTML_ASPJS_COMMENT_DOC" , 59 ); @define( "SCINTILLA_HTML_ASPJS_NUMBER" , 60 ); @define( "SCINTILLA_HTML_ASPJS_WORD" , 61 ); @define( "SCINTILLA_HTML_ASPJS_KEYWORD" , 62 ); @define( "SCINTILLA_HTML_ASPJS_STRING_DOUBLE" , 63 ); @define( "SCINTILLA_HTML_ASPJS_STRING_SINGLE" , 64 ); @define( "SCINTILLA_HTML_ASPJS_SYMBOL" , 65 ); @define( "SCINTILLA_HTML_ASPJS_EOL" , 66 ); @define( "SCINTILLA_HTML_ASPJS_REGEX" , 67 ); // LEXER_HTML :: Embedded VBS @define( "SCINTILLA_HTML_VBS_START" , 70 ); @define( "SCINTILLA_HTML_VBS_DEFAULT" , 71 ); @define( "SCINTILLA_HTML_VBS_COMMENT" , 72 ); @define( "SCINTILLA_HTML_VBS_NUMBER" , 73 ); @define( "SCINTILLA_HTML_VBS_KEYWORD" , 74 ); @define( "SCINTILLA_HTML_VBS_STRING" , 75 ); @define( "SCINTILLA_HTML_VBS_IDENTIFIER" , 76 ); @define( "SCINTILLA_HTML_VBS_EOL" , 77 ); // LEXER_HTML :: ASP VBS @define( "SCINTILLA_HTML_ASPVBS_START" , 80 ); @define( "SCINTILLA_HTML_ASPVBS_DEFAULT" , 81 ); @define( "SCINTILLA_HTML_ASPVBS_COMMENT" , 82 ); @define( "SCINTILLA_HTML_ASPVBS_NUMBER" , 83 ); @define( "SCINTILLA_HTML_ASPVBS_KEYWORD" , 84 ); @define( "SCINTILLA_HTML_ASPVBS_STRING" , 85 ); @define( "SCINTILLA_HTML_ASPVBS_IDENTIFIER" , 86 ); @define( "SCINTILLA_HTML_ASPVBS_EOL" , 87 ); // LEXER_HTML :: Embedded Python @define( "SCINTILLA_HTML_PY_START" , 90 ); @define( "SCINTILLA_HTML_PY_DEFAULT" , 91 ); @define( "SCINTILLA_HTML_PY_COMMENT_LINE" , 92 ); @define( "SCINTILLA_HTML_PY_NUMBER" , 93 ); @define( "SCINTILLA_HTML_PY_STRING_DOUBLE" , 94 ); @define( "SCINTILLA_HTML_PY_STRING_SINGLE" , 95 ); @define( "SCINTILLA_HTML_PY_KEYWORD" , 96 ); @define( "SCINTILLA_HTML_PY_TRIPLE_SINGLE" , 97 ); @define( "SCINTILLA_HTML_PY_TRIPLE_DOUBLE" , 98 ); @define( "SCINTILLA_HTML_PY_CLASS_STATEMENT" , 99 ); @define( "SCINTILLA_HTML_PY_DEF_STATEMENT" , 100 ); @define( "SCINTILLA_HTML_PY_OPERATOR" , 101 ); @define( "SCINTILLA_HTML_PY_IDENTIFIER" , 102 ); // LEXER_HTML :: ASP Python @define( "SCINTILLA_HTML_ASPPY_START" , 105 ); @define( "SCINTILLA_HTML_ASPPY_DEFAULT" , 106 ); @define( "SCINTILLA_HTML_ASPPY_COMMENT_LINE" , 107 ); @define( "SCINTILLA_HTML_ASPPY_NUMBER" , 108 ); @define( "SCINTILLA_HTML_ASPPY_STRING_DOUBLE" , 109 ); @define( "SCINTILLA_HTML_ASPPY_STRING_SINGLE" , 110 ); @define( "SCINTILLA_HTML_ASPPY_KEYWORD" , 111 ); @define( "SCINTILLA_HTML_ASPPY_TRIPLE_SINGLE" , 112 ); @define( "SCINTILLA_HTML_ASPPY_TRIPLE_DOUBLE" , 113 ); @define( "SCINTILLA_HTML_ASPPY_CLASS_STATEMENT" , 114 ); @define( "SCINTILLA_HTML_ASPPY_DEF_STATEMENT" , 115 ); @define( "SCINTILLA_HTML_ASPPY_OPERATOR" , 116 ); @define( "SCINTILLA_HTML_ASPPY_IDENTIFIER" , 117 ); // LEXER_HTML :: PHP @define( "SCINTILLA_HTML_PHP_DEFAULT" , 118 ); @define( "SCINTILLA_HTML_PHP_STRING_DOUBLE" , 119 ); @define( "SCINTILLA_HTML_PHP_STRING_SINGLE" , 120 ); @define( "SCINTILLA_HTML_PHP_KEYWORD" , 121 ); @define( "SCINTILLA_HTML_PHP_NUMBER" , 122 ); @define( "SCINTILLA_HTML_PHP_VARIABLE" , 123 ); @define( "SCINTILLA_HTML_PHP_COMMENT_BLOCK" , 124 ); @define( "SCINTILLA_HTML_PHP_COMMENT_LINE" , 125 ); @define( "SCINTILLA_HTML_PHP_EOL" , 126 ); @define( "SCINTILLA_HTML_PHP_OPERATOR" , 127 ); // LEXER_XML Lexical states @define( "SCINTILLA_XML_DEFAULT" , 0 ); @define( "SCINTILLA_XML_TAG" , 1 ); @define( "SCINTILLA_XML_TAG_UNKNOWN" , 2 ); @define( "SCINTILLA_XML_ATTRIBUTE" , 3 ); @define( "SCINTILLA_XML_ATTRIBUTE_UNKNOWN" , 4 ); @define( "SCINTILLA_XML_NUMBER" , 5 ); @define( "SCINTILLA_XML_DOUBLE_STRING" , 6 ); @define( "SCINTILLA_XML_SINGLE_STRING" , 7 ); @define( "SCINTILLA_XML_OTHER" , 8 ); @define( "SCINTILLA_XML_COMMENT" , 9 ); @define( "SCINTILLA_XML_ENTITY" , 10 ); @define( "SCINTILLA_XML_TAG_END" , 11 ); @define( "SCINTILLA_XML_ID_START" , 12 ); @define( "SCINTILLA_XML_ID_END" , 13 ); @define( "SCINTILLA_XML_CDATA" , 17 ); @define( "SCINTILLA_XML_QUESTION" , 18 ); @define( "SCINTILLA_XML_UNQUOTED" , 19 ); // LEXER_PERL Lexical states @define( "SCINTILLA_PERL_WHITE_SPACE" , 0 ); @define( "SCINTILLA_PERL_ERROR" , 1 ); @define( "SCINTILLA_PERL_COMMENT_LINE" , 2 ); @define( "SCINTILLA_PERL_POD" , 3 ); @define( "SCINTILLA_PERL_NUMBER" , 4 ); @define( "SCINTILLA_PERL_KEYWORD" , 5 ); @define( "SCINTILLA_PERL_STRING" , 6 ); @define( "SCINTILLA_PERL_CHARACTER" , 7 ); @define( "SCINTILLA_PERL_PUNCTUATION" , 8 ); @define( "SCINTILLA_PERL_PREPROCESSOR" , 9 ); @define( "SCINTILLA_PERL_OPERATOR" , 10 ); @define( "SCINTILLA_PERL_IDENTIFIER" , 11 ); @define( "SCINTILLA_PERL_SCALAR" , 12 ); @define( "SCINTILLA_PERL_ARRAY" , 13 ); @define( "SCINTILLA_PERL_HASH" , 14 ); @define( "SCINTILLA_PERL_SYMBOL_TABLE" , 15 ); @define( "SCINTILLA_PERL_REGEX" , 17 ); @define( "SCINTILLA_PERL_REGSUBST" , 18 ); @define( "SCINTILLA_PERL_LONG_QUOTE" , 19 ); @define( "SCINTILLA_PERL_BACKTICKS" , 20 ); @define( "SCINTILLA_PERL_DATA_SECTION" , 21 ); @define( "SCINTILLA_PERL_HERE_DELIM" , 22 ); @define( "SCINTILLA_PERL_HERE_Q" , 23 ); @define( "SCINTILLA_PERL_HERE_QQ" , 24 ); @define( "SCINTILLA_PERL_HERE_QX" , 25 ); @define( "SCINTILLA_PERL_STRING_Q" , 26 ); @define( "SCINTILLA_PERL_STRING_QQ" , 27 ); @define( "SCINTILLA_PERL_STRING_QX" , 28 ); @define( "SCINTILLA_PERL_STRING_QR" , 29 ); @define( "SCINTILLA_PERL_STRING_QW" , 30 ); // LEXER_SQL Lexical states @define( "SCINTILLA_SQL_WHITE_SPACE" , 0 ); @define( "SCINTILLA_SQL_COMMENT_BLOCK" , 1 ); @define( "SCINTILLA_SQL_COMMENT_LINE" , 2 ); @define( "SCINTILLA_SQL_COMMENT_DOC" , 3 ); @define( "SCINTILLA_SQL_NUMBER" , 4 ); @define( "SCINTILLA_SQL_KEYWORD" , 5 ); @define( "SCINTILLA_SQL_DOUBLE_STRING" , 6 ); @define( "SCINTILLA_SQL_SINGLE_STRING" , 7 ); @define( "SCINTILLA_SQL_SYMBOLS" , 8 ); @define( "SCINTILLA_SQL_PREPROCESSOR" , 9 ); @define( "SCINTILLA_SQL_OPERATOR" , 10 ); @define( "SCINTILLA_SQL_IDENTIFIER" , 11 ); @define( "SCINTILLA_SQL_STRING_EOL" , 12 ); // LEXER_VB Lexical states @define( "SCINTILLA_VB_WHITE_SPACE" , 0 ); @define( "SCINTILLA_VB_COMMENT_BLOCK" , 1 ); @define( "SCINTILLA_VB_COMMENT_LINE" , 2 ); @define( "SCINTILLA_VB_COMMENT_DOC" , 3 ); @define( "SCINTILLA_VB_NUMBER" , 4 ); @define( "SCINTILLA_VB_WORD" , 5 ); @define( "SCINTILLA_VB_STRING" , 6 ); @define( "SCINTILLA_VB_CHARACTER" , 7 ); @define( "SCINTILLA_VB_UUID" , 8 ); @define( "SCINTILLA_VB_PREPROCESSOR" , 9 ); @define( "SCINTILLA_VB_OPERATOR" , 10 ); @define( "SCINTILLA_VB_IDENTIFIER" , 11 ); @define( "SCINTILLA_VB_STRING_EOL" , 12 ); // LEXER_PROPERTIES Lexical states @define( "SCINTILLA_PROPERTIES_DEFAULT" , 0 ); @define( "SCINTILLA_PROPERTIES_COMMENT" , 1 ); @define( "SCINTILLA_PROPERTIES_SECTION" , 2 ); @define( "SCINTILLA_PROPERTIES_OPERATOR" , 3 ); @define( "SCINTILLA_PROPERTIES_DEFAULT_VAL" , 4 ); // LEXER_ERRORLIST Lexical states @define( "SCINTILLA_ERROR_DEFAULT" , 0 ); @define( "SCINTILLA_ERROR_PYTHON" , 1 ); @define( "SCINTILLA_ERROR_GCC" , 2 ); @define( "SCINTILLA_ERROR_MS" , 3 ); @define( "SCINTILLA_ERROR_CMD" , 4 ); @define( "SCINTILLA_ERROR_BORLAND" , 5 ); @define( "SCINTILLA_ERROR_PERL" , 6 ); @define( "SCINTILLA_ERROR_DIFF_CHANGED" , 10 ); @define( "SCINTILLA_ERROR_DIFF_ADDITION" , 11 ); @define( "SCINTILLA_ERROR_DIFF_DELETION" , 12 ); @define( "SCINTILLA_ERROR_DIFF_MESSAGE" , 13 ); // LEXER_MAKEFILE Lexical states @define( "SCINTILLA_MAKEFILE_WHITE_SPACE" , 0 ); @define( "SCINTILLA_MAKEFILE_COMMENT" , 1 ); @define( "SCINTILLA_MAKEFILE_PREPROCESSOR" , 2 ); @define( "SCINTILLA_MAKEFILE_IDENTIFIER" , 3 ); @define( "SCINTILLA_MAKEFILE_OPERATOR" , 4 ); @define( "SCINTILLA_MAKEFILE_IDEOL" , 9 ); // LEXER_BATCH Lexical states @define( "SCINTILLA_BATCH_DEFAULT" , 0 ); @define( "SCINTILLA_BATCH_COMMENT" , 1 ); @define( "SCINTILLA_BATCH_WORD" , 2 ); @define( "SCINTILLA_BATCH_LABEL" , 3 ); @define( "SCINTILLA_BATCH_HIDE" , 4 ); @define( "SCINTILLA_BATCH_COMMAND" , 5 ); @define( "SCINTILLA_BATCH_IDENTIFIER" , 6 ); @define( "SCINTILLA_BATCH_OPERATOR" , 7 ); // LEXER_LATEX Lexical states @define( "SCINTILLA_LATEX_WHITE_SPACE" , 0 ); @define( "SCINTILLA_LATEX_COMMAND" , 1 ); @define( "SCINTILLA_LATEX_TAG" , 2 ); @define( "SCINTILLA_LATEX_MATH" , 3 ); @define( "SCINTILLA_LATEX_COMMENT" , 4 ); // LEXER_LUA Lexical states @define( "SCINTILLA_LUA_WHITE_SPACE" , 0 ); @define( "SCINTILLA_LUA_COMMENT_BLOCK" , 1 ); @define( "SCINTILLA_LUA_COMMENT_LINE" , 2 ); @define( "SCINTILLA_LUA_COMMENT_DOC" , 3 ); @define( "SCINTILLA_LUA_NUMBER" , 4 ); @define( "SCINTILLA_LUA_KEYWORD" , 5 ); @define( "SCINTILLA_LUA_STRING" , 6 ); @define( "SCINTILLA_LUA_CHARACTER" , 7 ); @define( "SCINTILLA_LUA_LITERAL_STRING" , 8 ); @define( "SCINTILLA_LUA_PREPROCESSOR" , 9 ); @define( "SCINTILLA_LUA_OPERATOR" , 10 ); @define( "SCINTILLA_LUA_IDENTIFIER" , 11 ); @define( "SCINTILLA_LUA_STRING_EOL" , 12 ); // LEXER_DIFF Lexical states @define( "SCINTILLA_DIFF_DEFAULT" , 0 ); @define( "SCINTILLA_DIFF_COMMENT" , 1 ); @define( "SCINTILLA_DIFF_COMMAND" , 2 ); @define( "SCINTILLA_DIFF_FILES" , 3 ); @define( "SCINTILLA_DIFF_POSITION" , 4 ); @define( "SCINTILLA_DIFF_DEL_LINE" , 5 ); @define( "SCINTILLA_DIFF_ADD_LINE" , 6 ); // LEXER_CONF Lexical states @define( "SCINTILLA_CONF_DEFAULT" , 0 ); @define( "SCINTILLA_CONF_COMMENT" , 1 ); @define( "SCINTILLA_CONF_NUMBER" , 2 ); @define( "SCINTILLA_CONF_IDENTIFIER" , 3 ); @define( "SCINTILLA_CONF_EXTENSION" , 4 ); @define( "SCINTILLA_CONF_PARAMETER" , 5 ); @define( "SCINTILLA_CONF_STRING" , 6 ); @define( "SCINTILLA_CONF_OPERATOR" , 7 ); @define( "SCINTILLA_CONF_IP" , 8 ); @define( "SCINTILLA_CONF_DIRECTIVE" , 9 ); // LEXER_PASCAL Lexical states @define( "SCINTILLA_PASCAL_WHITE_SPACE" , 0 ); @define( "SCINTILLA_PASCAL_COMMENT_BLOCK" , 1 ); @define( "SCINTILLA_PASCAL_COMMENT_LINE" , 2 ); @define( "SCINTILLA_PASCAL_COMMENT_DOC" , 3 ); @define( "SCINTILLA_PASCAL_NUMBER" , 4 ); @define( "SCINTILLA_PASCAL_KEYWORD" , 5 ); @define( "SCINTILLA_PASCAL_DOUBLE_STRING" , 6 ); @define( "SCINTILLA_PASCAL_SINGLE_STRING" , 7 ); @define( "SCINTILLA_PASCAL_SYMBOLS" , 8 ); @define( "SCINTILLA_PASCAL_PREPROCESSOR" , 9 ); // LEXER_AVE Lexical states @define( "SCINTILLA_AVE_DEFAULT" , 0 ); @define( "SCINTILLA_AVE_COMMENT" , 1 ); @define( "SCINTILLA_AVE_NUMBER" , 2 ); @define( "SCINTILLA_AVE_WORD" , 3 ); @define( "SCINTILLA_AVE_KEYWORD" , 4 ); @define( "SCINTILLA_AVE_STATEMENT" , 5 ); @define( "SCINTILLA_AVE_STRING" , 6 ); @define( "SCINTILLA_AVE_ENUM" , 7 ); @define( "SCINTILLA_AVE_STRINGEOL" , 8 ); @define( "SCINTILLA_AVE_IDENTIFIER" , 9 ); @define( "SCINTILLA_AVE_OPERATOR" , 10 ); // LEXER_ADA Lexical states @define( "SCINTILLA_ADA_DEFAULT" , 0 ); @define( "SCINTILLA_ADA_COMMENT" , 1 ); @define( "SCINTILLA_ADA_NUMBER" , 2 ); @define( "SCINTILLA_ADA_WORD" , 3 ); @define( "SCINTILLA_ADA_STRING" , 4 ); @define( "SCINTILLA_ADA_CHARACTER" , 5 ); @define( "SCINTILLA_ADA_OPERATOR" , 6 ); @define( "SCINTILLA_ADA_IDENTIFIER" , 7 ); @define( "SCINTILLA_ADA_STRINGEOL" , 8 ); ?>