mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-21 17:34:57 -05:00
19 lines
438 B
C++
19 lines
438 B
C++
#pragma once
|
|
#include <regex-config.hpp>
|
|
|
|
#include <obs.hpp>
|
|
|
|
#include <optional>
|
|
#include <string>
|
|
|
|
namespace advss {
|
|
|
|
std::optional<std::string> GetSourceSettings(OBSWeakSource ws,
|
|
bool includeDefaults);
|
|
void SetSourceSettings(obs_source_t *s, const std::string &settings);
|
|
bool CompareSourceSettings(const std::string &sourceSettings,
|
|
const std::string &settings,
|
|
const RegexConfig ®ex);
|
|
|
|
} // namespace advss
|