summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/codecs/librm/rm.c2
-rw-r--r--apps/gui/list.c5
-rw-r--r--apps/gui/list.h5
-rw-r--r--apps/gui/wps.c2
4 files changed, 7 insertions, 7 deletions
diff --git a/apps/codecs/librm/rm.c b/apps/codecs/librm/rm.c
index b205e7f88d..00ee37a2f2 100644
--- a/apps/codecs/librm/rm.c
+++ b/apps/codecs/librm/rm.c
@@ -29,7 +29,7 @@
29 29
30#define SWAP(a, b) do{uint8_t SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0) 30#define SWAP(a, b) do{uint8_t SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0)
31 31
32void advance_buffer(uint8_t **buf, int val) 32static void advance_buffer(uint8_t **buf, int val)
33{ 33{
34 *buf += val; 34 *buf += val;
35} 35}
diff --git a/apps/gui/list.c b/apps/gui/list.c
index eb9c025a95..8a65d3f298 100644
--- a/apps/gui/list.c
+++ b/apps/gui/list.c
@@ -580,11 +580,6 @@ void gui_synclist_speak_item(struct gui_synclist * lists)
580 else _gui_synclist_speak_item(lists, false); 580 else _gui_synclist_speak_item(lists, false);
581} 581}
582 582
583#if defined(HAVE_TOUCHSCREEN)
584/* this needs to be fixed if we ever get more than 1 touchscreen on a target */
585unsigned gui_synclist_do_touchscreen(struct gui_synclist * gui_list);
586#endif
587
588bool gui_synclist_do_button(struct gui_synclist * lists, 583bool gui_synclist_do_button(struct gui_synclist * lists,
589 int *actionptr, enum list_wrap wrap) 584 int *actionptr, enum list_wrap wrap)
590{ 585{
diff --git a/apps/gui/list.h b/apps/gui/list.h
index 6b9f557d38..50aaebe93a 100644
--- a/apps/gui/list.h
+++ b/apps/gui/list.h
@@ -182,6 +182,11 @@ extern bool gui_synclist_do_button(struct gui_synclist * lists,
182 int *action, 182 int *action,
183 enum list_wrap); 183 enum list_wrap);
184 184
185#if defined(HAVE_TOUCHSCREEN)
186/* this needs to be fixed if we ever get more than 1 touchscreen on a target */
187unsigned gui_synclist_do_touchscreen(struct gui_synclist * gui_list);
188#endif
189
185/* If the list has a pending postponed scheduled announcement, that 190/* If the list has a pending postponed scheduled announcement, that
186 may become due before the next get_action tmieout. This function 191 may become due before the next get_action tmieout. This function
187 adjusts the get_action timeout appropriately. */ 192 adjusts the get_action timeout appropriately. */
diff --git a/apps/gui/wps.c b/apps/gui/wps.c
index a5142a0726..29c9403235 100644
--- a/apps/gui/wps.c
+++ b/apps/gui/wps.c
@@ -197,7 +197,7 @@ bool is_wps_fading(void)
197 return wps_fading_out; 197 return wps_fading_out;
198} 198}
199 199
200bool update_onvol_change(struct gui_wps * gwps) 200static bool update_onvol_change(struct gui_wps * gwps)
201{ 201{
202 skin_update(gwps, WPS_REFRESH_NON_STATIC); 202 skin_update(gwps, WPS_REFRESH_NON_STATIC);
203 203