From 112c4b6bb39e1069ae2ec7bb2f55a49939005957 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Sun, 9 Jun 2002 02:58:47 +0000 Subject: Compatibility with 64 bit systems. --- gtk/PlatGTK.cxx | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'gtk') 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(lParam)); +} + bool Platform::IsDBCSLeadByte(int /*codePage*/, char /*ch*/) { return false; } -- cgit v1.2.3