blob: d858e5c9f5981271314f6a7d705bccb7758f25c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef AL_COMPAT_H
#define AL_COMPAT_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 /* AL_COMPAT_H */
|