@b4n commented on this pull request.
+void sci_scroll_lines(ScintillaObject *sci, gint lines)
+{ + SSM(sci, SCI_LINESCROLL, 0, (uptr_t) lines); +} + +
@elextr I'm not concerned by any speed issues, just that although it looks "clean", it also makes the code somewhat more complex, adding a tiny bit of an additional constraints through new interfaces just to transform that interface (the wrapper doesn't have any logic of its own)