diff options
author | nyamatongwe <unknown> | 2000-10-03 12:11:57 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-10-03 12:11:57 +0000 |
commit | a3ad62da479a859b0df819ba74aa8b2d5ed71a60 (patch) | |
tree | 65f0b4d35e821158aaa45a350ea20733006eaac5 /include | |
parent | a67e810e17bcb5db90f2f0f53b90533c23cee8ed (diff) | |
download | scintilla-mirror-a3ad62da479a859b0df819ba74aa8b2d5ed71a60.tar.gz |
Error status attribute created.
Diffstat (limited to 'include')
-rw-r--r-- | include/Scintilla.h | 2 | ||||
-rw-r--r-- | include/Scintilla.iface | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index f707ed399..42fc2c8d0 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -368,6 +368,8 @@ typedef long (*SciFnDirect)(long ptr, unsigned int iMessage, unsigned long wPara #define SCI_GETMODEVENTMASK 2378 #define SCI_SETFOCUS 2380 #define SCI_GETFOCUS 2381 +#define SCI_SETSTATUS 2382 +#define SCI_GETSTATUS 2383 #define SCI_GRABFOCUS 2400 #define SCI_STARTRECORD 3001 #define SCI_STOPRECORD 3002 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 50cfa83c5..8b9073585 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -998,6 +998,11 @@ set void SetFocus=2380(bool focus,) # Get internal focus flag get bool GetFocus=2381(,) +# Change error status - 0 = OK +set void SetStatus=2382(int statusCode,) +# Get error status +get int GetStatus=2383(,) + # Set the focus to this Scintilla widget. # GTK+ Specific fun void GrabFocus=2400(,) |