(svn r7829) -Codechange: move the network (core) initialization/shutdown functions into network/core, so the can be reused in the masterserver_updater.

This commit is contained in:
rubidium
2007-01-04 18:50:40 +00:00
parent c231b1fa9a
commit 627ebe8430
6 changed files with 117 additions and 64 deletions

13
src/network/core/core.h Normal file
View File

@@ -0,0 +1,13 @@
/* $Id$ */
#ifndef NETWORK_CORE_H
#define NETWORK_CORE_H
#ifdef ENABLE_NETWORK
void NetworkCoreInitialize(void);
void NetworkCoreShutdown(void);
#endif /* ENABLE_NETWORK */
#endif /* NETWORK_CORE_H */