Reorganized comment documentation blocks.

Signed-off-by: Gergely Polonkai (W00d5t0ck) <polesz@w00d5t0ck.info>
This commit is contained in:
Gergely Polonkai (W00d5t0ck) 2012-03-26 16:52:39 +02:00
parent eea085dcdc
commit e56e4a2f8f
3 changed files with 38 additions and 3 deletions

View File

@ -19,6 +19,7 @@
<xi:include href="xml/types.xml"/>
<xi:include href="xml/utils.xml"/>
<xi:include href="xml/maintenance-thread.xml"/>
<xi:include href="xml/game-thread.xml"/>
<xi:include href="xml/game-networking.xml"/>
<xi:include href="xml/interpreter.xml"/>
<xi:include href="xml/db.xml"/>

View File

@ -12,6 +12,21 @@ wmud_random_string
<SECTION>
<TITLE></TITLE>
<FILE>maintenance-thread</FILE>
wmud_maintenance_init
</SECTION>
<SECTION>
<TITLE></TITLE>
<FILE>game-thread</FILE>
wmudClientState
wmudClient
elapsed_seconds
elapsed_cycle
game_context
wmud_game_init
</SECTION>
<FILE>game-networking</FILE>
TELNET_IAC
TELNET_WILL
@ -32,7 +47,7 @@ wmud_interpret_game_command
</SECTION>
<SECTION>
<TITLE>Database handling</TITLE>
<TITLE></TITLE>
<FILE>db</FILE>
WMUD_DB_ERROR
wmudDbError
@ -42,12 +57,13 @@ wmud_db_save_player
</SECTION>
<SECTION>
<TITLE>Player handling</TITLE>
<TITLE></TITLE>
<FILE>player</FILE>
wmudPlayer
players
wmud_player_dup
wmud_player_free
wmud_player_exists
wmud_player_auth
wmud_player_exists
</SECTION>

View File

@ -1,3 +1,21 @@
/* wMUD - Yet another MUD codebase by W00d5t0ck
* Copyright (C) 2012 - Gergely POLONKAI
*
* game.h: Game Thread related functions
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __WMUD_GAME_H__
#define __WMUD_GAME_H__