summaryrefslogtreecommitdiff
path: root/src/network/core/core.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-01-04 18:50:40 +0000
committerrubidium <rubidium@openttd.org>2007-01-04 18:50:40 +0000
commit627ebe8430720cb282fc1ae7f5fe6ff02f0593d0 (patch)
treeedd1cda84a0db3a3f3acf188a584f927189c216f /src/network/core/core.h
parentc231b1fa9ac55fc3bd3144a8681d52a57d2498bd (diff)
downloadopenttd-627ebe8430720cb282fc1ae7f5fe6ff02f0593d0.tar.xz
(svn r7829) -Codechange: move the network (core) initialization/shutdown functions into network/core, so the can be reused in the masterserver_updater.
Diffstat (limited to 'src/network/core/core.h')
-rw-r--r--src/network/core/core.h13
1 files changed, 13 insertions, 0 deletions
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 */