diff options
author | Bertrik Sikken <bertrik@sikken.nl> | 2009-05-21 12:32:26 +0000 |
---|---|---|
committer | Bertrik Sikken <bertrik@sikken.nl> | 2009-05-21 12:32:26 +0000 |
commit | 2dc2054319abbbd0f559a18ecfbb8416cdbd2baf (patch) | |
tree | be74a72d6cc7c5d44699b3da6d471d4356f40e57 /apps | |
parent | 0e725551af7c4b337aebcb8d922dba34cbb20565 (diff) | |
download | rockbox-2dc2054319abbbd0f559a18ecfbb8416cdbd2baf.tar.gz rockbox-2dc2054319abbbd0f559a18ecfbb8416cdbd2baf.zip |
Remove some unused declarations
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21010 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/codecs.c | 1 | ||||
-rw-r--r-- | apps/gui/list.c | 1 | ||||
-rw-r--r-- | apps/menus/recording_menu.c | 1 | ||||
-rw-r--r-- | apps/tagtree.c | 1 | ||||
-rw-r--r-- | apps/tree.h | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/apps/codecs.c b/apps/codecs.c index 565adcf203..c86aeda422 100644 --- a/apps/codecs.c +++ b/apps/codecs.c | |||
@@ -69,7 +69,6 @@ void *sim_codec_load_ram(char* codecptr, int size, void **pd); | |||
69 | void sim_codec_close(void *pd); | 69 | void sim_codec_close(void *pd); |
70 | #else | 70 | #else |
71 | #define sim_codec_close(x) | 71 | #define sim_codec_close(x) |
72 | extern unsigned char codecbuf[]; | ||
73 | #endif | 72 | #endif |
74 | 73 | ||
75 | size_t codec_size; | 74 | size_t codec_size; |
diff --git a/apps/gui/list.c b/apps/gui/list.c index 732529f416..9d82d88c81 100644 --- a/apps/gui/list.c +++ b/apps/gui/list.c | |||
@@ -572,7 +572,6 @@ void gui_synclist_speak_item(struct gui_synclist * lists) | |||
572 | else _gui_synclist_speak_item(lists, false); | 572 | else _gui_synclist_speak_item(lists, false); |
573 | } | 573 | } |
574 | 574 | ||
575 | extern intptr_t get_action_data(void); | ||
576 | #if defined(HAVE_TOUCHSCREEN) | 575 | #if defined(HAVE_TOUCHSCREEN) |
577 | /* this needs to be fixed if we ever get more than 1 touchscreen on a target */ | 576 | /* this needs to be fixed if we ever get more than 1 touchscreen on a target */ |
578 | unsigned gui_synclist_do_touchscreen(struct gui_synclist * gui_list); | 577 | unsigned gui_synclist_do_touchscreen(struct gui_synclist * gui_list); |
diff --git a/apps/menus/recording_menu.c b/apps/menus/recording_menu.c index ea551bedac..7805e8602c 100644 --- a/apps/menus/recording_menu.c +++ b/apps/menus/recording_menu.c | |||
@@ -612,7 +612,6 @@ MENUITEM_FUNCTION(rectrigger_item, 0, ID2P(LANG_RECORD_TRIGGER), | |||
612 | rectrigger, NULL, NULL, Icon_Menu_setting); | 612 | rectrigger, NULL, NULL, Icon_Menu_setting); |
613 | 613 | ||
614 | static struct browse_folder_info rec_config_browse = {RECPRESETS_DIR, SHOW_CFG}; | 614 | static struct browse_folder_info rec_config_browse = {RECPRESETS_DIR, SHOW_CFG}; |
615 | int browse_folder(void *param); | ||
616 | MENUITEM_FUNCTION(browse_recconfigs, MENU_FUNC_USEPARAM, ID2P(LANG_CUSTOM_CFG), | 615 | MENUITEM_FUNCTION(browse_recconfigs, MENU_FUNC_USEPARAM, ID2P(LANG_CUSTOM_CFG), |
617 | browse_folder, (void*)&rec_config_browse, NULL, Icon_Config); | 616 | browse_folder, (void*)&rec_config_browse, NULL, Icon_Config); |
618 | static int write_settings_file(void) | 617 | static int write_settings_file(void) |
diff --git a/apps/tagtree.c b/apps/tagtree.c index 0a1cce0247..13b5d83cb2 100644 --- a/apps/tagtree.c +++ b/apps/tagtree.c | |||
@@ -158,7 +158,6 @@ static int root_menu; | |||
158 | static int current_offset; | 158 | static int current_offset; |
159 | static int current_entry_count; | 159 | static int current_entry_count; |
160 | 160 | ||
161 | static int format_count; | ||
162 | static struct tree_context *tc; | 161 | static struct tree_context *tc; |
163 | 162 | ||
164 | static int get_token_str(char *buf, int size) | 163 | static int get_token_str(char *buf, int size) |
diff --git a/apps/tree.h b/apps/tree.h index a4f36d96fa..2d50387034 100644 --- a/apps/tree.h +++ b/apps/tree.h | |||
@@ -89,5 +89,4 @@ bool bookmark_play(char* resume_file, int index, int offset, int seed, | |||
89 | char *filename); | 89 | char *filename); |
90 | 90 | ||
91 | extern struct gui_synclist tree_lists; | 91 | extern struct gui_synclist tree_lists; |
92 | extern struct gui_syncstatusbar statusbars; | ||
93 | #endif | 92 | #endif |