mirror of
https://github.com/love2d/megasource.git
synced 2026-08-19 20:20:11 +02:00
Update OpenAL-soft to 1.23.1-bc7cb17.
This commit is contained in:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user