🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
370 B

  1. #ifndef CORE_HELPERS_H
  2. #define CORE_HELPERS_H
  3. #include <string>
  4. #include "vector.h"
  5. struct PathNamePair { std::string path, fname; };
  6. const PathNamePair &GetProcBinary(void);
  7. extern int RTPrioLevel;
  8. extern bool AllowRTTimeLimit;
  9. void SetRTPriority(void);
  10. al::vector<std::string> SearchDataFiles(const char *match, const char *subdir);
  11. #endif /* CORE_HELPERS_H */