summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/util/levcomp.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/util/levcomp.h')
-rw-r--r--crawl-ref/source/util/levcomp.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/crawl-ref/source/util/levcomp.h b/crawl-ref/source/util/levcomp.h
new file mode 100644
index 0000000000..e7d1a46f52
--- /dev/null
+++ b/crawl-ref/source/util/levcomp.h
@@ -0,0 +1,19 @@
+#include <cstdio>
+#include <string>
+#include <vector>
+#include "mapdef.h"
+
+// [dshaligram] It may be better to build the web of conditional #ifdefs to
+// figure out which header this is in by platform...
+extern "C" {
+ extern int unlink(const char *);
+}
+
+extern map_def map;
+extern level_range range;
+extern level_range default_depth;
+extern const char *autogenheader;
+extern const char *outfilename;
+extern FILE *outhandle;
+extern bool autowarned;
+extern bool write_append;