summaryrefslogtreecommitdiff
path: root/src/mmo/core.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mmo/core.hpp')
-rw-r--r--src/mmo/core.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mmo/core.hpp b/src/mmo/core.hpp
index 1788ece..7a26f7d 100644
--- a/src/mmo/core.hpp
+++ b/src/mmo/core.hpp
@@ -3,6 +3,8 @@
# include "../sanity.hpp"
+# include "../range/slice.hpp"
+
# include "../strings/fwd.hpp"
/// core.c contains a server-independent main() function
@@ -13,7 +15,7 @@ extern volatile bool runflag;
/// This is an external function defined by each server
/// This function must register stuff for the parse loop
-extern int do_init(int, ZString *);
+extern int do_init(Slice<ZString>);
/// Cleanup function called whenever a signal kills us
/// or when if we manage to exit() gracefully.