diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2020-12-23 00:16:02 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2020-12-23 00:16:02 -0800 |
commit | a6998186a3546f9f871e2cab3e994c782bd98a98 (patch) | |
tree | b0c5eeefc6f12746951002af45f84cf00d7c3cbe /src/direction.h | |
parent | 2946b408a1afb392b668fb3d35cb57ed7600cf2f (diff) |
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.
Diffstat (limited to 'src/direction.h')
-rw-r--r-- | src/direction.h | 9 |
1 files changed, 9 insertions, 0 deletions
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 |