diff options
author | celest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-04-05 14:32:04 +0000 |
---|---|---|
committer | celest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-04-05 14:32:04 +0000 |
commit | 573c40f53e1d0fe29c72117fc4ca2d931b274d8c (patch) | |
tree | 1c8afefbc96da8878fc94bfc3edd32486b80875f /src/common/showmsg.h | |
parent | 6acbd82fb5b77315853f42a9a31b7439a7e58bb9 (diff) | |
download | hercules-573c40f53e1d0fe29c72117fc4ca2d931b274d8c.tar.gz hercules-573c40f53e1d0fe29c72117fc4ca2d931b274d8c.tar.bz2 hercules-573c40f53e1d0fe29c72117fc4ca2d931b274d8c.tar.xz hercules-573c40f53e1d0fe29c72117fc4ca2d931b274d8c.zip |
* Added SERVER_TYPE to core for future plugins support
* Added support for the UPNP plugin to release port mappings and re-close firewall ports on shutdown
* Updated showmsg
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1409 54d463be-8e91-2dee-dedb-b68131a5f0ec
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 *, ...); |