diff options
author | nyamatongwe <devnull@localhost> | 2008-06-07 01:11:34 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2008-06-07 01:11:34 +0000 |
commit | e0eaaea9610cd92f699f1ef491d007684fa3437e (patch) | |
tree | cb861504e20e106fbec5cc0ec481f1baee0082cc /include | |
parent | 462c23849d6fa75dd8056f4d6e86156d4a30e5a2 (diff) | |
download | scintilla-mirror-e0eaaea9610cd92f699f1ef491d007684fa3437e.tar.gz |
Added AutoCCancelled event implementation from Enrico Tröger.
Diffstat (limited to 'include')
-rw-r--r-- | include/Scintilla.h | 1 | ||||
-rw-r--r-- | include/Scintilla.iface | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 90e7669ed..b1e6e3504 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -751,6 +751,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCN_AUTOCSELECTION 2022 #define SCN_INDICATORCLICK 2023 #define SCN_INDICATORRELEASE 2024 +#define SCN_AUTOCCANCELLED 2025 //--Autogenerated -- end of section automatically generated from Scintilla.iface // These structures are defined to be exactly the same shape as the Win32 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index edecbec51..32a257345 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -3326,6 +3326,7 @@ evt void CallTipClick=2021(int position) evt void AutoCSelection=2022(string text) evt void IndicatorClick=2023(int modifiers, int position) evt void IndicatorRelease=2024(int modifiers, int position) +evt void AutoCCancelled=2025(void) cat Deprecated |