X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2Fmessage.h;h=b1e09253353e1c9740ef4a5406b3f47963f6b37d;hb=beac6e15a941bd498ae9301cc91e409653be6c1a;hp=3aca77891e9e0df2f25e96be3317cffd63ee82e8;hpb=32669655d196fa0983ba23d1c55b8c81883e04d3;p=pspp-builds.git diff --git a/src/libpspp/message.h b/src/libpspp/message.h index 3aca7789..b1e09253 100644 --- a/src/libpspp/message.h +++ b/src/libpspp/message.h @@ -24,17 +24,19 @@ /* What kind of message is this? */ enum msg_category { - MSG_GENERAL, /* General info. */ - MSG_SYNTAX, /* Messages that relate to syntax files. */ - MSG_DATA /* Messages that relate to data files. */ + MSG_C_GENERAL, /* General info. */ + MSG_C_SYNTAX, /* Messages that relate to syntax files. */ + MSG_C_DATA, /* Messages that relate to data files. */ + MSG_N_CATEGORIES }; /* How important a condition is it? */ enum msg_severity { - MSG_ERROR, - MSG_WARNING, - MSG_NOTE + MSG_S_ERROR, + MSG_S_WARNING, + MSG_S_NOTE, + MSG_N_SEVERITIES }; /* Combination of a category and a severity for convenience. */ @@ -46,7 +48,6 @@ enum msg_class MSG_CLASS_CNT, }; - static inline enum msg_category msg_class_to_category (enum msg_class class) {