src/network/core/core.h
author rubidium
Thu, 04 Jan 2007 19:12:45 +0000
changeset 5775 016a737acde3
parent 5774 9df45c532d5d
child 5875 4a1391019791
permissions -rw-r--r--
(svn r7830) -Codechange: let NetworkCoreInitialize return a bool, so we have to set _network_available only once.
5774
9df45c532d5d (svn r7829) -Codechange: move the network (core) initialization/shutdown functions into network/core, so the can be reused in the masterserver_updater.
rubidium
parents:
diff changeset
     1
/* $Id$ */
9df45c532d5d (svn r7829) -Codechange: move the network (core) initialization/shutdown functions into network/core, so the can be reused in the masterserver_updater.
rubidium
parents:
diff changeset
     2
9df45c532d5d (svn r7829) -Codechange: move the network (core) initialization/shutdown functions into network/core, so the can be reused in the masterserver_updater.
rubidium
parents:
diff changeset
     3
#ifndef NETWORK_CORE_H
9df45c532d5d (svn r7829) -Codechange: move the network (core) initialization/shutdown functions into network/core, so the can be reused in the masterserver_updater.
rubidium
parents:
diff changeset
     4
#define NETWORK_CORE_H
9df45c532d5d (svn r7829) -Codechange: move the network (core) initialization/shutdown functions into network/core, so the can be reused in the masterserver_updater.
rubidium
parents:
diff changeset
     5
9df45c532d5d (svn r7829) -Codechange: move the network (core) initialization/shutdown functions into network/core, so the can be reused in the masterserver_updater.
rubidium
parents:
diff changeset
     6
#ifdef ENABLE_NETWORK
9df45c532d5d (svn r7829) -Codechange: move the network (core) initialization/shutdown functions into network/core, so the can be reused in the masterserver_updater.
rubidium
parents:
diff changeset
     7
5775
016a737acde3 (svn r7830) -Codechange: let NetworkCoreInitialize return a bool, so we have to set _network_available only once.
rubidium
parents: 5774
diff changeset
     8
bool NetworkCoreInitialize(void);
5774
9df45c532d5d (svn r7829) -Codechange: move the network (core) initialization/shutdown functions into network/core, so the can be reused in the masterserver_updater.
rubidium
parents:
diff changeset
     9
void NetworkCoreShutdown(void);
9df45c532d5d (svn r7829) -Codechange: move the network (core) initialization/shutdown functions into network/core, so the can be reused in the masterserver_updater.
rubidium
parents:
diff changeset
    10
9df45c532d5d (svn r7829) -Codechange: move the network (core) initialization/shutdown functions into network/core, so the can be reused in the masterserver_updater.
rubidium
parents:
diff changeset
    11
#endif /* ENABLE_NETWORK */
9df45c532d5d (svn r7829) -Codechange: move the network (core) initialization/shutdown functions into network/core, so the can be reused in the masterserver_updater.
rubidium
parents:
diff changeset
    12
9df45c532d5d (svn r7829) -Codechange: move the network (core) initialization/shutdown functions into network/core, so the can be reused in the masterserver_updater.
rubidium
parents:
diff changeset
    13
#endif /* NETWORK_CORE_H */