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 /include/ScintillaWidget.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 'include/ScintillaWidget.h')
-rw-r--r-- | include/ScintillaWidget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ScintillaWidget.h b/include/ScintillaWidget.h index 70e26dbce..9ac743573 100644 --- a/include/ScintillaWidget.h +++ b/include/ScintillaWidget.h @@ -35,7 +35,7 @@ struct _ScintillaClass { guint scintilla_get_type (void); GtkWidget* scintilla_new (void); void scintilla_set_id (ScintillaObject *sci,int id); -long scintilla_send_message (ScintillaObject *sci,int iMessage,int wParam,int lParam); +sptr_t scintilla_send_message (ScintillaObject *sci,int iMessage, uptr_t wParam, sptr_t lParam); #ifdef __cplusplus } |