diff options
Diffstat (limited to 'src/common/showmsg.h')
-rw-r--r-- | src/common/showmsg.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/common/showmsg.h b/src/common/showmsg.h index 3461369c3..b5f4d4bfd 100644 --- a/src/common/showmsg.h +++ b/src/common/showmsg.h @@ -32,8 +32,19 @@ extern char tmp_output[1024]; -enum msg_type {MSG_STATUS, MSG_SQL, MSG_INFORMATION,MSG_NOTICE,MSG_WARNING,MSG_DEBUG,MSG_ERROR,MSG_FATALERROR}; +enum msg_type { + MSG_NONE, + MSG_STATUS, + MSG_SQL, + MSG_INFORMATION, + MSG_NOTICE, + MSG_WARNING, + MSG_DEBUG, + MSG_ERROR, + MSG_FATALERROR +}; +extern int ShowMessage(const char *, ...); extern int ShowStatus(const char *, ...); extern int ShowSQL(const char *, ...); extern int ShowInfo(const char *, ...); |