It's too small to be useful. Simply move the three function
declarations to afs.h, next to the playlist related functions.
#include "sched.h"
#include "fd.h"
#include "signal.h"
-#include "mood.h"
#include "sideband.h"
#include "command.h"
int aft_check_callback(struct afs_callback_arg *aca);
void free_status_items(void);
+/* mood */
+int mood_switch(const char *mood_name, char **errmsg);
+void close_current_mood(void);
+int mood_check_callback(struct afs_callback_arg *aca);
+
/* playlist */
int playlist_open(const char *name, char **errmsg);
void playlist_close(void);
#include "afh.h"
#include "afs.h"
#include "list.h"
-#include "mood.h"
/*
* Mood parser API. It's overkill to have an own header file for
+++ /dev/null
-/* Copyright (C) 2007 Andre Noll <maan@tuebingen.mpg.de>, see file COPYING. */
-
-/** \file mood.h Public functions of mood.c. */
-
-int mood_switch(const char *mood_name, char **errmsg);
-void close_current_mood(void);
-int mood_check_callback(struct afs_callback_arg *aca);