helpers.h 370 B

123456789101112131415161718
  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 */