project_files/frontlib/util/logging.h
author Medo <smaxein@googlemail.com>
Sat, 09 Jun 2012 03:28:38 +0200
changeset 7179 f84805e6df03
parent 7160 project_files/frontlib/logging.h@c42949cfdd92
child 7182 076aba32abd3
permissions -rw-r--r--
Implemented game launching API for the frontlib. It is still buggy though, and not all game settings can be conveniently created/modified yet.

/*
 *
 */

#ifndef LOGGING_H_
#define LOGGING_H_

#include<stdint.h>

char* flib_format_ip(uint32_t numip);

void flib_log_e(const char *fmt, ...);
void flib_log_w(const char *fmt, ...);
void flib_log_i(const char *fmt, ...);

#endif /* LOGGING_H_ */