summaryrefslogtreecommitdiff
path: root/src/command.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/command.h')
-rw-r--r--src/command.h4
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 */