diff options
author | nyamatongwe <unknown> | 2001-02-17 07:57:43 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-02-17 07:57:43 +0000 |
commit | 98596629f2462a30dca950d5365a200b5704277f (patch) | |
tree | d7e671c0145a32a27b001d6acf4dc28519710a0b /src/Editor.h | |
parent | f29acfd963c239d1eecf94d154103e552bbcec2a (diff) | |
download | scintilla-mirror-98596629f2462a30dca950d5365a200b5704277f.tar.gz |
Defining sptr_t and uptr_t to be integral types large enough to contain
pointers to allow portability to 64 bit platforms.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Editor.h b/src/Editor.h index 4e1ffc782..81806ba77 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -308,11 +308,11 @@ protected: // ScintillaBase subclass needs access to much of Editor void ToggleContraction(int line); void EnsureLineVisible(int line); - virtual long DefWndProc(unsigned int iMessage, unsigned long wParam, long lParam) = 0; + virtual sptr_t DefWndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) = 0; public: // Public so scintilla_send_message can use it - virtual long WndProc(unsigned int iMessage, unsigned long wParam, long lParam); + virtual sptr_t WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam); // Public so scintilla_set_id can use it int ctrlID; }; |