From a3ad62da479a859b0df819ba74aa8b2d5ed71a60 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Tue, 3 Oct 2000 12:11:57 +0000 Subject: Error status attribute created. --- include/Scintilla.h | 2 ++ include/Scintilla.iface | 5 +++++ 2 files changed, 7 insertions(+) (limited to 'include') 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(,) -- cgit v1.2.3