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
commitb7223171160e6f1a8d4f0fd634f6f358c611c886 (patch)
treeedd1cda84a0db3a3f3acf188a584f927189c216f /src/network/core/core.h
parentb65e17869325573d026f251f316fc9e8068b7306 (diff)
downloadopenttd-b7223171160e6f1a8d4f0fd634f6f358c611c886.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 */