diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2021-04-22 03:14:31 -0700 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2021-04-22 03:15:26 -0700 |
commit | d2f587ee23f3e538d6d2744b9acae2e15e047db8 (patch) | |
tree | 6605d92963ade5f06b0f475b97a8192d25dd9a92 /core/helpers.h | |
parent | f0154c4366445f8ef360c233e9bc11a33d75b922 (diff) |
Move helpers.cpp to core
Diffstat (limited to 'core/helpers.h')
-rw-r--r-- | core/helpers.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/core/helpers.h b/core/helpers.h new file mode 100644 index 00000000..f0bfcf1b --- /dev/null +++ b/core/helpers.h @@ -0,0 +1,18 @@ +#ifndef CORE_HELPERS_H +#define CORE_HELPERS_H + +#include <string> + +#include "vector.h" + + +struct PathNamePair { std::string path, fname; }; +const PathNamePair &GetProcBinary(void); + +extern int RTPrioLevel; +extern bool AllowRTTimeLimit; +void SetRTPriority(void); + +al::vector<std::string> SearchDataFiles(const char *match, const char *subdir); + +#endif /* CORE_HELPERS_H */ |