Update OpenAL-soft to 1.23.1-bc7cb17.

This commit is contained in:
Miku AuahDark
2024-03-20 11:06:03 +08:00
parent 4a512be715
commit 73a6fc9196
294 changed files with 44342 additions and 40077 deletions
+14 -8
View File
@@ -2,17 +2,23 @@
#define CORE_HELPERS_H
#include <string>
#include "vector.h"
#include <string_view>
#include <vector>
struct PathNamePair { std::string path, fname; };
const PathNamePair &GetProcBinary(void);
struct PathNamePair {
std::string path, fname;
};
const PathNamePair &GetProcBinary();
extern int RTPrioLevel;
extern bool AllowRTTimeLimit;
void SetRTPriority(void);
/* Mixing thread priority level */
inline int RTPrioLevel{1};
al::vector<std::string> SearchDataFiles(const char *match, const char *subdir);
/* Allow reducing the process's RTTime limit for RTKit. */
inline bool AllowRTTimeLimit{true};
void SetRTPriority();
std::vector<std::string> SearchDataFiles(const std::string_view ext, const std::string_view subdir);
#endif /* CORE_HELPERS_H */