summaryrefslogtreecommitdiff
path: root/firmware/export/scroll_engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/scroll_engine.h')
-rw-r--r--firmware/export/scroll_engine.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/firmware/export/scroll_engine.h b/firmware/export/scroll_engine.h
index 64e1d6d6ae..ce230a218c 100644
--- a/firmware/export/scroll_engine.h
+++ b/firmware/export/scroll_engine.h
@@ -79,7 +79,10 @@ struct scrollinfo
79 bool bidir; 79 bool bidir;
80 long start_tick; 80 long start_tick;
81 81
82 /* support for custom scrolling functions */ 82 /* support for custom scrolling functions,
83 * must be called with ::line == NULL to indicate that the line
84 * stops scrolling or when the userdata pointer is going to be changed
85 * (the custom scroller can release the userdata then) */
83 void (*scroll_func)(struct scrollinfo *s); 86 void (*scroll_func)(struct scrollinfo *s);
84 void *userdata; 87 void *userdata;
85}; 88};