From a6998186a3546f9f871e2cab3e994c782bd98a98 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Wed, 23 Dec 2020 00:16:02 -0800 Subject: direction: introduce vwm_direction_t enum type Preparations for adding support for reversing {window,desktop} list traversal directions. A subsequent commit will introduce a direction flag of this type to the relevant functions. --- src/direction.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/direction.h (limited to 'src/direction.h') diff --git a/src/direction.h b/src/direction.h new file mode 100644 index 0000000..11019d5 --- /dev/null +++ b/src/direction.h @@ -0,0 +1,9 @@ +#ifndef _DIRECTION_H +#define _DIRECTION_H + +typedef enum _vwm_direction_t { + VWM_DIRECTION_FORWARD, + VWM_DIRECTION_REVERSE +} vwm_direction_t; + +#endif -- cgit v1.2.3