summaryrefslogtreecommitdiffstats
path: root/src/c_mpdview.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_mpdview.h')
-rw-r--r--src/c_mpdview.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/c_mpdview.h b/src/c_mpdview.h
index a96df4a..289fa29 100644
--- a/src/c_mpdview.h
+++ b/src/c_mpdview.h
@@ -39,7 +39,7 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* mpdview: src/c_mpdview.h
- * Sun, 03 Jul 2022 03:31:56 +0200
+ * Thu, 14 Jul 2022 14:22:17 +0200
* Joe
*/
@@ -52,13 +52,16 @@
#include <mpd/song.h>
#include <mpd/status.h>
+#include "c_defines.h"
+
struct mpdview_s {
struct mpd_connection* conn;
struct mpd_status* status;
struct mpd_song* song;
enum mpd_state state;
- char music_dir[PATH_MAX];
- char current_dir[PATH_MAX];
+ char music_dir[PATH_MAX];
+ char current_dir[PATH_MAX];
+ bool_t verbose;
};
#endif /* __C_MPDVIEW_H__ */