vitunes
 All Data Structures
enums.h
1 /*
2  * Just some handy constants used throughout vitunes.
3  * Note that no typing is used at all. These are just
4  * constants.
5  */
6 #ifndef ENUMS_H
7 #define ENUMS_H
8 
9 typedef enum {
10  UP, DOWN,
11  LEFT, RIGHT,
12  BACKWARDS, FORWARDS,
13  SAME, OPPOSITE
14 } Direction;
15 
16 typedef enum {
17  SECONDS, MINUTES,
18  NUMBER, PERCENT
19 } Scale;
20 
21 typedef enum {
22  SINGLE, HALF, WHOLE
23 } Amount;
24 
25 typedef enum {
26  TOP, MIDDLE, BOTTOM,
27  BEFORE, AFTER
28 } Placement;
29 
30 #endif