wmud/src/db.h
Polonkai Gergely 63c37a8791 Minor modifications and code cleaning
* Created a wmud_types.h file to hold all the basic data types used by wMUD
* Redefined wmud_db_init() so error reporting will be possible
2012-03-22 09:49:19 +00:00

14 lines
259 B
C

#ifndef __WMUD_DB_H__
#define __WMUD_DB_H__
#include <glib.h>
#include "wmud_types.h"
gboolean wmud_db_init(GError **err);
gboolean wmud_load_players(GError **err);
gboolean wmud_save_player(wmudPlayer *player, GError **err);
#endif /* __WMUD__DB_H__ */