blob: f0bfcf1b5c5e03a87d5ac5987d152e643c67dbfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 */
|