From fdc29d0ea4fbdd2cc1509a53122be7ec85cdb432 Mon Sep 17 00:00:00 2001 From: Boris Gjenero Date: Mon, 19 Dec 2011 20:12:52 +0000 Subject: Add more INIT_ATTR and add config.h includes to header files with INIT_ATTR. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31370 a1c6a512-1295-4272-9138-f99709370657 --- apps/buffering.h | 3 ++- apps/codec_thread.h | 3 ++- apps/filetypes.h | 3 ++- apps/gui/statusbar.h | 1 + apps/gui/wps.h | 1 + apps/misc.h | 2 +- apps/playlist.h | 1 + apps/radio/radio.h | 1 + apps/recorder/pcm_record.h | 4 +++- apps/settings.h | 2 +- apps/tagcache.h | 1 + apps/tagtree.h | 1 + apps/tree.h | 1 + apps/voice_thread.h | 4 +++- 14 files changed, 21 insertions(+), 7 deletions(-) (limited to 'apps') diff --git a/apps/buffering.h b/apps/buffering.h index ee3e7c9..6d52794 100644 --- a/apps/buffering.h +++ b/apps/buffering.h @@ -24,6 +24,7 @@ #include #include +#include "config.h" #include "appevents.h" @@ -47,7 +48,7 @@ enum data_type { /* Initialise the buffering subsystem */ -void buffering_init(void); +void buffering_init(void) INIT_ATTR; /* Reset the buffering system */ bool buffering_reset(char *buf, size_t buflen); diff --git a/apps/codec_thread.h b/apps/codec_thread.h index 65f64c3..c33284e 100644 --- a/apps/codec_thread.h +++ b/apps/codec_thread.h @@ -23,12 +23,13 @@ #define _CODEC_THREAD_H #include +#include "config.h" /* codec identity */ const char *get_codec_filename(int cod_spec); /* codec thread */ -void codec_thread_init(void); +void codec_thread_init(void) INIT_ATTR; /* Audio MUST be stopped before requesting callback! */ void codec_thread_do_callback(void (*fn)(void), diff --git a/apps/filetypes.h b/apps/filetypes.h index dd8993e..8c9e9a5 100644 --- a/apps/filetypes.h +++ b/apps/filetypes.h @@ -22,6 +22,7 @@ #define _FILEHANDLE_H_ #include +#include "config.h" #include /* using attribute bits not used by FAT (FAT uses lower 7) */ @@ -54,7 +55,7 @@ struct filetype { enum themable_icons icon; int voiceclip; }; -void tree_get_filetypes(const struct filetype**, int*); +void tree_get_filetypes(const struct filetype**, int*) INIT_ATTR; /* init the filetypes structs. uses audio buffer for storage, so call early in init... */ diff --git a/apps/gui/statusbar.h b/apps/gui/statusbar.h index 281cf3f..7ad07d0 100644 --- a/apps/gui/statusbar.h +++ b/apps/gui/statusbar.h @@ -22,6 +22,7 @@ #ifndef _GUI_STATUSBAR_H_ #define _GUI_STATUSBAR_H_ +#include "config.h" #include "status.h" #include "screen_access.h" #include "events.h" diff --git a/apps/gui/wps.h b/apps/gui/wps.h index f1ec746..a463b0e 100644 --- a/apps/gui/wps.h +++ b/apps/gui/wps.h @@ -21,6 +21,7 @@ #ifndef _WPS_H_ #define _WPS_H_ #include +#include "config.h" #include "screen_access.h" long gui_wps_show(void); diff --git a/apps/misc.h b/apps/misc.h index 4647898..6305bca 100644 --- a/apps/misc.h +++ b/apps/misc.h @@ -63,7 +63,7 @@ bool settings_parseline(char* line, char** name, char** value); long default_event_handler_ex(long event, void (*callback)(void *), void *parameter); long default_event_handler(long event); bool list_stop_handler(void); -void car_adapter_mode_init(void); +void car_adapter_mode_init(void) INIT_ATTR; extern int show_logo(void); int open_utf8(const char* pathname, int flags); diff --git a/apps/playlist.h b/apps/playlist.h index 4722be1..d19d9a7 100644 --- a/apps/playlist.h +++ b/apps/playlist.h @@ -23,6 +23,7 @@ #define __PLAYLIST_H__ #include +#include "config.h" #include "file.h" #include "kernel.h" #include "metadata.h" diff --git a/apps/radio/radio.h b/apps/radio/radio.h index d243cb6..8c4b394 100644 --- a/apps/radio/radio.h +++ b/apps/radio/radio.h @@ -21,6 +21,7 @@ #ifndef RADIO_H #define RADIO_H +#include "config.h" #ifndef FMRADIO_H #include "fmradio.h" #endif diff --git a/apps/recorder/pcm_record.h b/apps/recorder/pcm_record.h index 3d9bb4c..1ac6fae 100644 --- a/apps/recorder/pcm_record.h +++ b/apps/recorder/pcm_record.h @@ -22,6 +22,8 @@ #ifndef PCM_RECORD_H #define PCM_RECORD_H +#include "config.h" + /** Warnings **/ /* pcm (dma) buffer has overflowed */ #define PCMREC_W_PCM_BUFFER_OVF 0x00000001 @@ -49,7 +51,7 @@ void pcm_rec_error_clear(void); results for consistency with the hardware codec version */ unsigned long pcm_rec_status(void); unsigned long pcm_rec_get_warnings(void); -void pcm_rec_init(void); +void pcm_rec_init(void) INIT_ATTR; int pcm_rec_current_bitrate(void); int pcm_rec_encoder_afmt(void); /* AFMT_* value, AFMT_UNKNOWN if none */ int pcm_rec_rec_format(void); /* Format index or -1 otherwise */ diff --git a/apps/settings.h b/apps/settings.h index 2524dcc..7047b93 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -193,7 +193,7 @@ enum { ALARM_START_WPS = 0, #define SETTINGS_RTC (BIT_N(0)) /* only the settings from the RTC nonvolatile RAM */ #define SETTINGS_HD (BIT_N(1)) /* only the settings from the disk sector */ #define SETTINGS_ALL (SETTINGS_RTC|SETTINGS_HD) /* both */ -void settings_load(int which); +void settings_load(int which) INIT_ATTR; bool settings_load_config(const char* file, bool apply); void status_save(void); diff --git a/apps/tagcache.h b/apps/tagcache.h index 604e93b..44161cf 100644 --- a/apps/tagcache.h +++ b/apps/tagcache.h @@ -22,6 +22,7 @@ #ifndef _TAGCACHE_H #define _TAGCACHE_H +#include "config.h" #include "system.h" #include "metadata.h" diff --git a/apps/tagtree.h b/apps/tagtree.h index 26952b4..8369020 100644 --- a/apps/tagtree.h +++ b/apps/tagtree.h @@ -22,6 +22,7 @@ #ifndef _TAGTREE_H #define _TAGTREE_H +#include "config.h" #include "tagcache.h" #include "tree.h" diff --git a/apps/tree.h b/apps/tree.h index d3a128b..70494f8 100644 --- a/apps/tree.h +++ b/apps/tree.h @@ -24,6 +24,7 @@ #include #include #include +#include "config.h" #include "icon.h" /* keep this struct compatible (total size and name member) diff --git a/apps/voice_thread.h b/apps/voice_thread.h index 5f6547f..49b2f3f 100644 --- a/apps/voice_thread.h +++ b/apps/voice_thread.h @@ -21,6 +21,8 @@ #ifndef VOICE_THREAD_H #define VOICE_THREAD_H +#include "config.h" + void mp3_play_data(const unsigned char* start, int size, void (*get_more)(unsigned char** start, size_t* size)); void mp3_play_stop(void); @@ -30,7 +32,7 @@ bool mp3_is_playing(void); void voice_wait(void); void voice_stop(void); -void voice_thread_init(void); +void voice_thread_init(void) INIT_ATTR; #ifdef HAVE_PRIORITY_SCHEDULING void voice_thread_set_priority(int priority); #endif -- cgit v1.1