diff options
author | Neil <nyamatongwe@gmail.com> | 2017-12-19 15:00:40 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-12-19 15:00:40 +1100 |
commit | 01c48f98e5557089fc7501394f905a5b15fde9c0 (patch) | |
tree | d1508bcbcf021f45ec37a14ed7c238b3e98ce58a /include/Scintilla.h | |
parent | 13e07ac896114885b16ca0a48fa0751579ba681e (diff) | |
download | scintilla-mirror-01c48f98e5557089fc7501394f905a5b15fde9c0.tar.gz |
Start of bidirectional code - implement SCI_SETBIDIRECTIONAL.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 25649302e..74ec5b91a 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -1103,6 +1103,13 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SCN_AUTOCCOMPLETED 2030 #define SCN_MARGINRIGHTCLICK 2031 #define SCN_AUTOCSELECTIONCHANGE 2032 +#ifndef SCI_DISABLE_PROVISIONAL +#define SC_BIDIRECTIONAL_DISABLED 0 +#define SC_BIDIRECTIONAL_L2R 1 +#define SC_BIDIRECTIONAL_R2L 2 +#define SCI_GETBIDIRECTIONAL 2708 +#define SCI_SETBIDIRECTIONAL 2709 +#endif /* --Autogenerated -- end of section automatically generated from Scintilla.iface */ /* These structures are defined to be exactly the same shape as the Win32 |