diff options
author | Valaris <Valaris@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-01-29 16:00:45 +0000 |
---|---|---|
committer | Valaris <Valaris@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-01-29 16:00:45 +0000 |
commit | a2675f07d7da22a7c6ae11f545bf8f671e785a82 (patch) | |
tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /src/common/showmsg.h | |
parent | b8801ae9585201eaaf9fdf80d9c7117ee18f52e2 (diff) | |
download | hercules-a2675f07d7da22a7c6ae11f545bf8f671e785a82.tar.gz hercules-a2675f07d7da22a7c6ae11f545bf8f671e785a82.tar.bz2 hercules-a2675f07d7da22a7c6ae11f545bf8f671e785a82.tar.xz hercules-a2675f07d7da22a7c6ae11f545bf8f671e785a82.zip |
Clearing trunk.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5091 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/showmsg.h')
-rw-r--r-- | src/common/showmsg.h | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/src/common/showmsg.h b/src/common/showmsg.h deleted file mode 100644 index b5f4d4bfd..000000000 --- a/src/common/showmsg.h +++ /dev/null @@ -1,57 +0,0 @@ -#ifndef _SHOWMSG_H_ -#define _SHOWMSG_H_ - -//davidsiaw, 'lookee' here! -#define SHOW_DEBUG_MSG 1 - -#ifdef _WIN32 -#define CL_RESET "" -#define CL_NORMAL CL_RESET -#define CL_NONE CL_RESET -#define CL_WHITE "" -#define CL_GRAY "" -#define CL_RED "" -#define CL_GREEN "" -#define CL_YELLOW "" -#define CL_BLUE "" -#define CL_MAGENTA "" -#define CL_CYAN "" -#else -#define CL_RESET "\033[0;0m" -#define CL_NORMAL CL_RESET -#define CL_NONE CL_RESET -#define CL_WHITE "\033[1;29m" -#define CL_GRAY "\033[1;30m" -#define CL_RED "\033[1;31m" -#define CL_GREEN "\033[1;32m" -#define CL_YELLOW "\033[1;33m" -#define CL_BLUE "\033[1;34m" -#define CL_MAGENTA "\033[1;35m" -#define CL_CYAN "\033[1;36m" -#endif - -extern char tmp_output[1024]; - -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 *, ...); -extern int ShowNotice(const char *, ...); -extern int ShowWarning(const char *, ...); -extern int ShowDebug(const char *, ...); -extern int ShowError(const char *, ...); -extern int ShowFatalError(const char *, ...); - -#endif |