Fix fopen() on windows to cope with long filenames (part of #1755).
[dcpomatic.git] / src / lib / cross_linux.cc
index 510bce8c3df4e141ed3c0e8c113c5a8e0a4d7719..816573230adc1dabfb71f002fa83791e190b6482 100644 (file)
@@ -420,3 +420,11 @@ dcpomatic::get_process_id ()
 {
        return dcp::raw_convert<string>(getpid());
 }
+
+
+boost::filesystem::path
+fix_long_path (boost::filesystem::path path)
+{
+       return path;
+}
+