The status_item_list array is needed for the audio format handler info
struct (afhi), so all executables which contain afh_common.o need it.
Currently, afh.c and command.c define their own instance for para_afh
and para_server respectively.
Moving the definition of the array to afc.c saves one instance. No
big deal.
#include "version.h"
static struct afh_args_info conf;
-/** The list of all status items */
-const char *status_item_list[] = {STATUS_ITEM_ARRAY};
-
INIT_AFH_ERRLISTS;
static int loglevel;
#endif
void wma_afh_init(struct audio_format_handler *);
+
+/** The list of all status items */
+const char *status_item_list[] = {STATUS_ITEM_ARRAY};
+
/**
* The list of supported audio formats.
*
extern struct sender senders[];
int send_afs_status(struct command_context *cc, int parser_friendly);
-const char *status_item_list[] = {STATUS_ITEM_ARRAY};
-
static void dummy(__a_unused int s)
{
}