diff options
author | Joe <bousset.rudy@gmail.com> | 2022-07-14 14:31:43 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-07-14 14:31:43 +0200 |
commit | 31fca6120ac66b88002d8cbbdb27989b432e0e21 (patch) | |
tree | 1f30f3525cd8c197d73d071e489b2f44aa3741ce /src/c_mpdview.h | |
parent | Update (diff) | |
download | mpdview-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.h | 9 |
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__ */ |