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) |
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); void sim_codec_close(void *pd); #else #define sim_codec_close(x) -extern unsigned char codecbuf[]; #endif 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) else _gui_synclist_speak_item(lists, false); } -extern intptr_t get_action_data(void); #if defined(HAVE_TOUCHSCREEN) /* this needs to be fixed if we ever get more than 1 touchscreen on a target */ 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), rectrigger, NULL, NULL, Icon_Menu_setting); static struct browse_folder_info rec_config_browse = {RECPRESETS_DIR, SHOW_CFG}; -int browse_folder(void *param); MENUITEM_FUNCTION(browse_recconfigs, MENU_FUNC_USEPARAM, ID2P(LANG_CUSTOM_CFG), browse_folder, (void*)&rec_config_browse, NULL, Icon_Config); 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; static int current_offset; static int current_entry_count; -static int format_count; static struct tree_context *tc; 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, char *filename); extern struct gui_synclist tree_lists; -extern struct gui_syncstatusbar statusbars; #endif |