mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
scroll_engine: Rename scroll_stop* functions to be more consistent with the lcd api.
Change-Id: I8ada10b96bfb628cca0331689e8b936ae47c7e1c
This commit is contained in:
parent
47c8d3c14d
commit
1c5d0b41ee
34 changed files with 100 additions and 87 deletions
|
@ -29,14 +29,24 @@
|
|||
#include <lcd.h>
|
||||
#include "file.h"
|
||||
|
||||
void scroll_init(void) INIT_ATTR;
|
||||
void lcd_scroll_stop(const struct viewport* vp);
|
||||
void lcd_scroll_stop_line(const struct viewport* vp, int y);
|
||||
void lcd_scroll_fn(void);
|
||||
extern void scroll_init(void) INIT_ATTR;
|
||||
|
||||
extern void lcd_bidir_scroll(int threshold);
|
||||
extern void lcd_scroll_speed(int speed);
|
||||
extern void lcd_scroll_delay(int ms);
|
||||
|
||||
extern void lcd_scroll_stop(void);
|
||||
extern void lcd_scroll_stop_viewport(const struct viewport *vp);
|
||||
extern void lcd_scroll_stop_viewport_line(const struct viewport *vp, int line);
|
||||
extern void lcd_scroll_fn(void);
|
||||
#ifdef HAVE_REMOTE_LCD
|
||||
void lcd_remote_scroll_fn(void);
|
||||
void lcd_remote_scroll_stop(const struct viewport* vp);
|
||||
void lcd_remote_scroll_stop_line(const struct viewport* vp, int y);
|
||||
extern void lcd_remote_scroll_speed(int speed);
|
||||
extern void lcd_remote_scroll_delay(int ms);
|
||||
|
||||
extern void lcd_remote_scroll_stop(void);
|
||||
extern void lcd_remote_scroll_stop_viewport(const struct viewport *vp);
|
||||
extern void lcd_remote_scroll_stop_viewport_line(const struct viewport *vp, int line);
|
||||
extern void lcd_remote_scroll_fn(void);
|
||||
#endif
|
||||
|
||||
/* internal usage, but in multiple drivers */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue