diff options
author | Daniel Carl <danielcarl@gmx.de> | 2013-07-30 23:12:47 +0200 |
---|---|---|
committer | Daniel Carl <danielcarl@gmx.de> | 2013-07-30 23:34:53 +0200 |
commit | c0ca690173cf62e3a861d45b06c5cbbfcef01851 (patch) | |
tree | b86e6e6132a4abfaf56b1b34b57a5553301ea5d7 /src/command.h | |
parent | c540528c16d560db412b72106fd4566ac1082eec (diff) |
Allow to switch off queue feature via config.h.
Diffstat (limited to 'src/command.h')
-rw-r--r-- | src/command.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/command.h b/src/command.h index b12dccb..321c76d 100644 --- a/src/command.h +++ b/src/command.h @@ -44,10 +44,12 @@ enum { COMMAND_SAVE_URI }; +#ifdef FEATURE_QUEUE enum { COMMAND_QUEUE_PUSH, COMMAND_QUEUE_POP }; +#endif typedef gboolean (*Command)(const Arg *arg); @@ -86,6 +88,8 @@ gboolean command_nextprev(const Arg *arg); gboolean command_descent(const Arg *arg); gboolean command_save(const Arg *arg); gboolean command_shellcmd(const Arg *arg); +#ifdef FEATURE_QUEUE gboolean command_queue(const Arg *arg); +#endif #endif /* end of include guard: _COMMAND_H */ |