server/src/log.pkg
Enno Rehling 804734d013 MSVC: disable level 4 warning C4100 for tolua-generated code (unused variable)
make a single object from all generated binding code.
this setup is unusual, but easier to maintain.
2014-08-14 19:39:17 +02:00

12 lines
329 B
Text

$#undef tolua_reg_types
$#define tolua_reg_types tolua_reg_types_log
$#include <util/log.h>
module eressea {
module log {
void log_error @ error(const char *message);
void log_debug @ debug(const char *message);
void log_warning @ warning(const char *message);
void log_info @ info(const char *message);
}
}