summaryrefslogtreecommitdiffstats
path: root/src/c_mpdview.h
diff options
context:
space:
mode:
authorJoe <bousset.rudy@gmail.com>2022-07-14 14:31:43 +0200
committerJoe <bousset.rudy@gmail.com>2022-07-14 14:31:43 +0200
commit31fca6120ac66b88002d8cbbdb27989b432e0e21 (patch)
tree1f30f3525cd8c197d73d071e489b2f44aa3741ce /src/c_mpdview.h
parentUpdate (diff)
downloadmpdview-31fca6120ac66b88002d8cbbdb27989b432e0e21.tar.gz
mpdview-31fca6120ac66b88002d8cbbdb27989b432e0e21.tar.bz2
mpdview-31fca6120ac66b88002d8cbbdb27989b432e0e21.tar.xz
mpdview-31fca6120ac66b88002d8cbbdb27989b432e0e21.tar.zst
mpdview-31fca6120ac66b88002d8cbbdb27989b432e0e21.zip
opts
Diffstat (limited to '')
-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__ */