diff options
author | nyamatongwe <devnull@localhost> | 2000-04-23 23:06:04 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-04-23 23:06:04 +0000 |
commit | 21a5739ca3dc9c1704e91d2bca1459cb73fadb92 (patch) | |
tree | 1634699ee23672d2b5897e139faaeed272bcb31d | |
parent | e7e0244ee5f2dc3cee896ef695efbaf9a47ac519 (diff) | |
download | scintilla-mirror-21a5739ca3dc9c1704e91d2bca1459cb73fadb92.tar.gz |
Added notifications before inserting or deleting text.
-rw-r--r-- | include/Scintilla.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 12c7a6a14..d4092814f 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -371,8 +371,10 @@ typedef void (tMacroRecorder)(UINT iMessage, WPARAM wParam, LPARAM lParam, #define SC_PERFORMED_REDO 0x40 #define SC_LASTSTEPINUNDOREDO 0x100 #define SC_MOD_CHANGEMARKER 0x200 +#define SC_MOD_BEFOREINSERT 0x400 +#define SC_MOD_BEFOREDELETE 0x800 -#define SC_MODEVENTMASKALL 0x377 +#define SC_MODEVENTMASKALL 0xF77 struct SCNotification { NMHDR nmhdr; |