aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2007-06-24 12:02:23 +0000
committernyamatongwe <unknown>2007-06-24 12:02:23 +0000
commit903e4bd44bab47455f533915caaa95bd2fd2e99e (patch)
treefd041ad1e922734432d617c50c2c80575a71ec84 /src/Editor.h
parentb443cc0a72149358aab36d9a8b26e5021d72fbfc (diff)
downloadscintilla-mirror-903e4bd44bab47455f533915caaa95bd2fd2e99e.tar.gz
Make the styles array variable length so it can be increased to 256 entries
without always taking 24K.
Diffstat (limited to 'src/Editor.h')
-rw-r--r--src/Editor.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Editor.h b/src/Editor.h
index 213b0e361..501abb632 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -454,6 +454,8 @@ protected: // ScintillaBase subclass needs access to much of Editor
void AddStyledText(char *buffer, int appendLength);
virtual sptr_t DefWndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) = 0;
+ void StyleSetMessage(unsigned int iMessage, uptr_t wParam, sptr_t lParam);
+ sptr_t StyleGetMessage(unsigned int iMessage, uptr_t wParam, sptr_t lParam);
public:
// Public so the COM thunks can access it.