From 627ebe8430720cb282fc1ae7f5fe6ff02f0593d0 Mon Sep 17 00:00:00 2001 From: rubidium Date: Thu, 4 Jan 2007 18:50:40 +0000 Subject: (svn r7829) -Codechange: move the network (core) initialization/shutdown functions into network/core, so the can be reused in the masterserver_updater. --- src/network/core/core.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/network/core/core.h (limited to 'src/network/core/core.h') diff --git a/src/network/core/core.h b/src/network/core/core.h new file mode 100644 index 000000000..80a08eece --- /dev/null +++ b/src/network/core/core.h @@ -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 */ -- cgit v1.2.3-54-g00ecf