summaryrefslogtreecommitdiff
path: root/src/modules.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules.hpp')
-rw-r--r--src/modules.hpp17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/modules.hpp b/src/modules.hpp
index d83e3e2e..867955c9 100644
--- a/src/modules.hpp
+++ b/src/modules.hpp
@@ -1,11 +1,14 @@
#pragma once
#include "h-basic.h"
+#include <string>
-extern bool_ select_module(void);
-extern bool_ module_savefile_loadable(cptr savefile_mod);
-extern void tome_intro();
-extern void theme_intro();
-extern s16b *theme_race_status(int r_idx);
-extern void init_hooks_module();
-extern int find_module(cptr name);
+bool_ select_module();
+bool module_savefile_loadable(std::string const &savefile_mod);
+void tome_intro();
+void theme_intro();
+s16b *theme_race_status(int r_idx);
+void init_hooks_module();
+int find_module(cptr name);
+bool_ private_check_user_directory(cptr dirpath);
+extern cptr force_module;