diff options
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(,) | 
