diff options
author | nyamatongwe <unknown> | 2002-06-09 02:58:47 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-06-09 02:58:47 +0000 |
commit | 28e0c4bd3005f79d2cd6b260831d655c26f7a478 (patch) | |
tree | 7b0416e002a76253ad5b11abe3194edc06bd4061 /gtk | |
parent | 1511b05408236df30b05670faffdef2730e3caa1 (diff) | |
download | scintilla-mirror-28e0c4bd3005f79d2cd6b260831d655c26f7a478.tar.gz |
Compatibility with 64 bit systems.
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/PlatGTK.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index a28a7c973..8d3ad5437 100644 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -960,6 +960,12 @@ long Platform::SendScintilla( return scintilla_send_message(SCINTILLA(w), msg, wParam, lParam); } +long Platform::SendScintillaPointer( + WindowID w, unsigned int msg, unsigned long wParam, void *lParam) { + return scintilla_send_message(SCINTILLA(w), msg, wParam, + reinterpret_cast<sptr_t>(lParam)); +} + bool Platform::IsDBCSLeadByte(int /*codePage*/, char /*ch*/) { return false; } |