diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2021-04-22 03:00:05 -0700 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2021-04-22 03:00:05 -0700 |
commit | f0154c4366445f8ef360c233e9bc11a33d75b922 (patch) | |
tree | f207851792ac9573aba77989a61345dc4419b86c /alc/compat.h | |
parent | 8f8e9aa91395901f3714023b889455a2e1859d46 (diff) |
Move declarations to a more appropriate header
Diffstat (limited to 'alc/compat.h')
-rw-r--r-- | alc/compat.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/alc/compat.h b/alc/compat.h index 960b4b94..d858e5c9 100644 --- a/alc/compat.h +++ b/alc/compat.h @@ -3,7 +3,16 @@ #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 */ |