mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-08-29 20:55:28 -05:00
22 lines
474 B
C++
22 lines
474 B
C++
#pragma once
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#include <obs-data.h>
|
|
|
|
namespace advss {
|
|
|
|
struct ThreadPrio {
|
|
std::string name;
|
|
std::string description;
|
|
uint32_t value;
|
|
};
|
|
|
|
std::vector<int> GetDefaultFunctionPriorityList();
|
|
void SetDefaultFunctionPriorities(obs_data_t *);
|
|
void SaveFunctionPriorities(obs_data_t *, std::vector<int> &);
|
|
void LoadFunctionPriorities(obs_data_t *, std::vector<int> &);
|
|
std::vector<ThreadPrio> GetThreadPrioMapping();
|
|
|
|
} // namespace advss
|