diff options
| author | mitchell <unknown> | 2020-03-22 17:57:13 -0400 |
|---|---|---|
| committer | mitchell <unknown> | 2020-03-22 17:57:13 -0400 |
| commit | 4cee064b28d77f2947dc9f4de7fd77401cfd9dc2 (patch) | |
| tree | 1b3b6086bc8fa427131a462d2db9c5e1a44fdd8a /curses/ScintillaCurses.h | |
| parent | b75ab9523b3706c9130017bae130288313a03a7e (diff) | |
| download | scintilla-mirror-4cee064b28d77f2947dc9f4de7fd77401cfd9dc2.tar.gz | |
Added userdata pointer for SCNotifications on curses.
Diffstat (limited to 'curses/ScintillaCurses.h')
| -rw-r--r-- | curses/ScintillaCurses.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/curses/ScintillaCurses.h b/curses/ScintillaCurses.h index 9f8ddc4fa..733c89cf6 100644 --- a/curses/ScintillaCurses.h +++ b/curses/ScintillaCurses.h @@ -16,7 +16,7 @@ extern "C" { * @param callback A callback function for Scintilla notifications. */ void *scintilla_new( - void (*callback)(void *sci, int iMessage, void *wParam, void *lParam)); + void (*callback)(void *sci, int iMessage, SCNotification *n, void *userdata), void *userdata); /** * Returns the curses `WINDOW` associated with the given Scintilla window. * Curses must have been initialized prior to calling this function. |
