(svn r7834) -Codechange: cleanup the includes of network/core a little; include headers in headers when the header needs types/constants defined in them.

This commit is contained in:
rubidium 2007-01-04 21:21:14 +00:00
parent bfe4dcbc39
commit b2f85eb044
7 changed files with 15 additions and 11 deletions

View File

@ -5,6 +5,10 @@
#ifdef ENABLE_NETWORK
#include "config.h"
#include "../../date.h"
#include "../../newgrf_config.h"
/**
* @file game.h Information about a game that is sent between a
* game server, game client and masterserver.

View File

@ -6,8 +6,6 @@
#include "../../macros.h"
#include "../../string.h"
#include "os_abstraction.h"
#include "config.h"
#include "packet.h"
/**

View File

@ -5,6 +5,8 @@
#ifdef ENABLE_NETWORK
#include "config.h"
/**
* @file packet.h Basic functions to create, fill and read packets.
*/

View File

@ -9,10 +9,8 @@
#include "table/strings.h"
#include "../../functions.h"
#include "os_abstraction.h"
#include "config.h"
#include "packet.h"
#include "../network_data.h"
#include "packet.h"
#include "tcp.h"
/**

View File

@ -5,6 +5,9 @@
#ifdef ENABLE_NETWORK
#include "os_abstraction.h"
#include "packet.h"
/**
* @file tcp.h Basic functions to receive and send TCP packets.
*/

View File

@ -3,14 +3,8 @@
#ifdef ENABLE_NETWORK
#include "../../stdafx.h"
#include "../../date.h"
#include "../../debug.h"
#include "../../macros.h"
#include "../../newgrf_config.h"
#include "os_abstraction.h"
#include "config.h"
#include "game.h"
#include "packet.h"
#include "udp.h"

View File

@ -5,6 +5,11 @@
#ifdef ENABLE_NETWORK
#include "os_abstraction.h"
#include "game.h"
#include "packet.h"
#include "../../newgrf_config.h"
/**
* @file udp.h Basic functions to receive and send UDP packets.
*/