aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2009-04-02 07:51:33 +0000
committernyamatongwe <devnull@localhost>2009-04-02 07:51:33 +0000
commitf51b1e5080edb6fbc2add4dfdec9b0d397aa1f2a (patch)
tree9a98b4b9041080357edf19d6288f367d6c4c3c6b /include
parentc2efc9d4c2883c6a0b013e0d77bff19939483c84 (diff)
downloadscintilla-mirror-f51b1e5080edb6fbc2add4dfdec9b0d397aa1f2a.tar.gz
Method to find the symbol defined for a marker number.
SC_MARK_AVAILABLE defined.
Diffstat (limited to 'include')
-rw-r--r--include/Scintilla.h1
-rw-r--r--include/Scintilla.iface4
2 files changed, 5 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index 3edb6da41..6c3509344 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -677,6 +677,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,
#define SCI_GETEXTRAASCENT 2526
#define SCI_SETEXTRADESCENT 2527
#define SCI_GETEXTRADESCENT 2528
+#define SCI_MARKERSYMBOLDEFINED 2529
#define SCI_STARTRECORD 3001
#define SCI_STOPRECORD 3002
#define SCI_SETLEXER 4001
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 166d37d2a..ed31a803e 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -269,6 +269,7 @@ val SC_MARK_ARROWS=24
val SC_MARK_PIXMAP=25
val SC_MARK_FULLRECT=26
val SC_MARK_LEFTRECT=27
+val SC_MARK_AVAILABLE=28
val SC_MARK_CHARACTER=10000
@@ -1828,6 +1829,9 @@ set void SetExtraDescent=2527(int extraDescent,)
# Get extra descent for each line
get int GetExtraDescent=2528(,)
+# Which symbol was defined for markerNumber with MarkerDefine
+fun int MarkerSymbolDefined=2529(int markerNumber,)
+
# Start notifying the container of all key presses and commands.
fun void StartRecord=3001(,)