aboutsummaryrefslogtreecommitdiff
path: root/src/einfo.h
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-09-28 12:29:23 +0000
committerRoy Marples <roy@marples.name>2007-09-28 12:29:23 +0000
commit6f7f447978025c9d49a0d2a0a5a6a29384ba80c8 (patch)
tree8efb8c146d53799bee35d6cb3acf62c25abdc40d /src/einfo.h
parente89c2c5d60ad97f60e6dfecabc39acef8bc03525 (diff)
enums are now fixed to specific values and are in UPPER CASE.
Diffstat (limited to 'src/einfo.h')
-rw-r--r--src/einfo.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/einfo.h b/src/einfo.h
index 9c9bc7a3..f9769af5 100644
--- a/src/einfo.h
+++ b/src/einfo.h
@@ -25,12 +25,12 @@
/*! @brief Color types to use */
typedef enum
{
- ecolor_good,
- ecolor_warn,
- ecolor_bad,
- ecolor_hilite,
- ecolor_bracket,
- ecolor_normal
+ ECOLOR_NORMAL = 1,
+ ECOLOR_GOOD = 2,
+ ECOLOR_WARN = 3,
+ ECOLOR_BAD = 4,
+ ECOLOR_HILITE = 5,
+ ECOLOR_BRACKET = 6
} einfo_color_t;
/*! @brief Returns the ASCII code for the color */