summaryrefslogtreecommitdiff
path: root/src/lib/cross.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-06-03 12:21:28 +0200
committerCarl Hetherington <cth@carlh.net>2020-06-04 01:20:11 +0200
commit7552a04c443c9c641ac580585f6d88900bf84d04 (patch)
tree7a3d4e6d454279b8d43e37d2cd4ae3d956316275 /src/lib/cross.h
parent816872f9ddf1251f29fe51594401ddd4f4d89c59 (diff)
Clean up handling of paths relative to the executable.
Diffstat (limited to 'src/lib/cross.h')
-rw-r--r--src/lib/cross.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/lib/cross.h b/src/lib/cross.h
index 114581269..4d3d2b2c7 100644
--- a/src/lib/cross.h
+++ b/src/lib/cross.h
@@ -49,17 +49,14 @@ extern boost::filesystem::path openssl_path ();
#ifdef DCPOMATIC_DISK
extern boost::filesystem::path disk_writer_path ();
#endif
-#ifdef DCPOMATIC_OSX
-extern boost::filesystem::path app_contents ();
-#endif
#ifdef DCPOMATIC_WINDOWS
extern void maybe_open_console ();
#endif
extern boost::filesystem::path shared_path ();
extern FILE * fopen_boost (boost::filesystem::path, std::string);
extern int dcpomatic_fseek (FILE *, int64_t, int);
-extern void start_batch_converter (boost::filesystem::path dcpomatic);
-extern void start_player (boost::filesystem::path dcpomatic);
+extern void start_batch_converter ();
+extern void start_player ();
extern uint64_t thread_id ();
extern int avio_open_boost (AVIOContext** s, boost::filesystem::path file, int flags);
extern boost::filesystem::path home_directory ();
@@ -67,6 +64,7 @@ extern std::string command_and_read (std::string cmd);
extern bool running_32_on_64 ();
extern void unprivileged ();
extern boost::filesystem::path config_path ();
+extern boost::filesystem::path directory_containing_executable ();
class PrivilegeEscalator
{