#ifndef CORE_HELPERS_H #define CORE_HELPERS_H #include #include #include struct PathNamePair { std::string path, fname; PathNamePair() = default; template PathNamePair(T&& path_, U&& fname_) : path{std::forward(path_)}, fname{std::forward(fname_)} { } }; const PathNamePair &GetProcBinary(); extern int RTPrioLevel; extern bool AllowRTTimeLimit; void SetRTPriority(); std::vector SearchDataFiles(const char *match, const char *subdir); #endif /* CORE_HELPERS_H */