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
This commit is contained in:
Polonkai Gergely
2012-03-22 09:49:19 +00:00
parent 71ffb83626
commit 63c37a8791
6 changed files with 47 additions and 29 deletions

View File

@@ -281,3 +281,9 @@ wmud_client_send(wmudClient *client, const gchar *fmt, ...)
g_string_free(buf, TRUE);
}
void
wmud_client_start_login(wmudClient *client)
{
g_print("Trying to login with playername '%s'\n", client->buffer->str);
}