define precision scrolling and momentum structs, C API

This commit is contained in:
Mitchell Hashimoto
2023-06-29 10:38:15 -07:00
parent 481107b41d
commit 20f46d5c08
4 changed files with 65 additions and 3 deletions

View File

@@ -502,7 +502,13 @@ pub const CAPI = struct {
surface.cursorPosCallback(x, y);
}
export fn ghostty_surface_mouse_scroll(surface: *Surface, x: f64, y: f64) void {
export fn ghostty_surface_mouse_scroll(
surface: *Surface,
x: f64,
y: f64,
scroll_mods: c_int,
) void {
_ = scroll_mods;
surface.scrollCallback(x, y);
}