summaryrefslogtreecommitdiff
path: root/src/init2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/init2.h')
-rw-r--r--src/init2.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/init2.h b/src/init2.h
new file mode 100644
index 00000000..5697e4ef
--- /dev/null
+++ b/src/init2.h
@@ -0,0 +1,14 @@
+#pragma once
+
+// C linkage required for these functions since main-* code uses them.
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+extern void init_file_paths(char *path);
+extern void init_file_paths_with_env();
+extern void init_angband(void);
+
+#ifdef __cplusplus
+} // extern "C"
+#endif