| 25 | static constexpr auto kSingleInstanceMutexName = "OpenLoco.lock"; |
| 26 | |
| 27 | uint32_t getTime() |
| 28 | { |
| 29 | struct timespec spec; |
| 30 | clock_gettime(CLOCK_REALTIME, &spec); |
| 31 | return (spec.tv_sec * 1000) + spec.tv_nsec / 1000000; |
| 32 | } |
| 33 | |
| 34 | std::vector<fs::path> getDrives() |
| 35 | { |
no outgoing calls
no test coverage detected