diff options
| author | nyamatongwe <devnull@localhost> | 2001-02-17 07:57:43 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2001-02-17 07:57:43 +0000 |
| commit | 0d508e3e10cc073b041dc5148c796aee8c1e3928 (patch) | |
| tree | d7e671c0145a32a27b001d6acf4dc28519710a0b /src/ScintillaBase.h | |
| parent | e53cc246d032d0f925cbfca9a9013420574cb9ac (diff) | |
| download | scintilla-mirror-0d508e3e10cc073b041dc5148c796aee8c1e3928.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.h')
| -rw-r--r-- | src/ScintillaBase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ScintillaBase.h b/src/ScintillaBase.h index 5978ca9bc..04abbd10f 100644 --- a/src/ScintillaBase.h +++ b/src/ScintillaBase.h @@ -70,7 +70,7 @@ protected: virtual void NotifyStyleToNeeded(int endStyleNeeded); 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); }; #endif |
