diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2013-12-20 23:34:28 +0100 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2014-01-07 11:36:00 +0100 |
| commit | b8505222c02a7a5a19571c3d4577f3b473cb8558 (patch) | |
| tree | 69c934c9a66ce010fe4d125fe06f7b043788628e | |
| parent | 98d2121eaa857fcd9e665f6a5f321703b9659af1 (diff) | |
| download | rockbox-b8505222c02a7a5a19571c3d4577f3b473cb8558.zip rockbox-b8505222c02a7a5a19571c3d4577f3b473cb8558.tar.gz rockbox-b8505222c02a7a5a19571c3d4577f3b473cb8558.tar.bz2 rockbox-b8505222c02a7a5a19571c3d4577f3b473cb8558.tar.xz | |
scroll_engine: Change header inclusion
Change-Id: I033db3d3a838f0a950ce7707de6a0cd4b2595d93
| -rw-r--r-- | firmware/export/scroll_engine.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/export/scroll_engine.h b/firmware/export/scroll_engine.h index 5e4b744..e3fd720 100644 --- a/firmware/export/scroll_engine.h +++ b/firmware/export/scroll_engine.h @@ -25,10 +25,12 @@ #ifndef __SCROLL_ENGINE_H__ #define __SCROLL_ENGINE_H__ +#include <stdbool.h> #include "config.h" -#include <lcd.h> #include "file.h" +struct viewport; + extern void scroll_init(void) INIT_ATTR; extern void lcd_bidir_scroll(int threshold); |