diff options
author | Joe <bousset.rudy@gmail.com> | 2022-06-27 21:54:42 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-06-27 21:54:42 +0200 |
commit | d34f7e2196d61675bdff26d84b1f402b86685cef (patch) | |
tree | f4498521a9fe0eeb9db98e6587cb32cea125184f /src/c_mpdview.h | |
parent | First commit (diff) | |
download | mpdview-d34f7e2196d61675bdff26d84b1f402b86685cef.tar.gz mpdview-d34f7e2196d61675bdff26d84b1f402b86685cef.tar.bz2 mpdview-d34f7e2196d61675bdff26d84b1f402b86685cef.tar.xz mpdview-d34f7e2196d61675bdff26d84b1f402b86685cef.tar.zst mpdview-d34f7e2196d61675bdff26d84b1f402b86685cef.zip |
WIP
Diffstat (limited to 'src/c_mpdview.h')
-rw-r--r-- | src/c_mpdview.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/c_mpdview.h b/src/c_mpdview.h index fc904a4..ad9338f 100644 --- a/src/c_mpdview.h +++ b/src/c_mpdview.h @@ -48,4 +48,12 @@ #define PROGNAME "mpdview" +typedef char bool_t; +typedef void* ptr_t; + +enum bool_e { + FALSE, + TRUE +}; + #endif /* __C_MPDVIEW_H__ */ |