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/ScintillaBase.cxx | |
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/ScintillaBase.cxx')
-rw-r--r-- | src/ScintillaBase.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index 29fad12d0..eb769923c 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -367,7 +367,7 @@ void ScintillaBase::NotifyStyleToNeeded(int endStyleNeeded) { Editor::NotifyStyleToNeeded(endStyleNeeded); } -long ScintillaBase::WndProc(unsigned int iMessage, unsigned long wParam, long lParam) { +sptr_t ScintillaBase::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { switch (iMessage) { case SCI_AUTOCSHOW: listType = 0; |