diff options
author | nyamatongwe <unknown> | 2001-02-17 08:41:43 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-02-17 08:41:43 +0000 |
commit | 1b828b1c13d2bb1104619f5cd3730d21e3ef7060 (patch) | |
tree | 162e16a79a33f2f95aa0f40b1f3dc7a708602cdd /include/Scintilla.h | |
parent | 98596629f2462a30dca950d5365a200b5704277f (diff) | |
download | scintilla-mirror-1b828b1c13d2bb1104619f5cd3730d21e3ef7060.tar.gz |
Changed header order to work on GTK+.
Scintilla.h must be before ScintillaWidget.h now.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r-- | include/Scintilla.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 429b7a9d7..f78fa7c31 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -21,11 +21,8 @@ void Scintilla_RegisterClasses(HINSTANCE hInstance); // Here should be placed typedefs for uptr_t, an unsigned integer type large enough to // hold a pointer and sptr_t, a signed integer large enough to hold a pointer. // May need to be changed for 64 bit platforms. -#ifndef POINTER_TYPES -#define POINTER_TYPES typedef unsigned long uptr_t; typedef long sptr_t; -#endif typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, sptr_t lParam); |