diff options
author | Eugenio Favalli <elvenprogrammer@gmail.com> | 2004-12-11 17:39:25 +0000 |
---|---|---|
committer | Eugenio Favalli <elvenprogrammer@gmail.com> | 2004-12-11 17:39:25 +0000 |
commit | 3fcde31ec23e0bb8f5403e2dcba6ac030fb310a2 (patch) | |
tree | 81fc3e70dc98a9ed9f1f86614df8b886508abcfc /src/log.h | |
parent | af7060d953e1c0f54a7d5bf46894191d41d853ff (diff) | |
download | mana-3fcde31ec23e0bb8f5403e2dcba6ac030fb310a2.tar.gz mana-3fcde31ec23e0bb8f5403e2dcba6ac030fb310a2.tar.bz2 mana-3fcde31ec23e0bb8f5403e2dcba6ac030fb310a2.tar.xz mana-3fcde31ec23e0bb8f5403e2dcba6ac030fb310a2.zip |
Core sprite classes of the new graphic engine
Diffstat (limited to 'src/log.h')
-rw-r--r-- | src/log.h | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -19,21 +19,23 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef WIN32 - #pragma warning (disable:4312) -#endif - #ifndef _LOG_H #define _LOG_H #include <stdlib.h> #include <stdio.h> +#include <string> +using namespace std; #include <stdarg.h> #include <time.h> +#ifdef WIN32 +#include <allegro.h> +#include <winalleg.h> +#endif void init_log(); void log(const char *category, const char *log_text, ...); -void error(const char *error_text); +void error(string error_text); void warning(const char *warning_text); void status(const char *status_text); |