mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-15 00:05:06 +00:00
5a3954ae0e
Fixes several files incorrectly stated a different license from the actual project, as well as the copyright headers included in all files. This change has no effect on the licensing terms, it should clear up a bit of confusion by contributors. Plus the files get a bit smaller, and we have less duplicated information across the entire project. Overall the project is GPLv2 if not built with Qt, and GPLv3 if it is built with Qt. There are no parts licensed under a different license, all have been adapted from other compatible licenses into GPLv2 or GPLv3.
18 lines
517 B
C++
18 lines
517 B
C++
// AUTOGENERATED COPYRIGHT HEADER START
|
|
// Copyright (C) 2019-2023 Michael Fabian 'Xaymar' Dirks <info@xaymar.com>
|
|
// AUTOGENERATED COPYRIGHT HEADER END
|
|
|
|
#pragma once
|
|
#include "common.hpp"
|
|
|
|
namespace streamfx {
|
|
// Threadpool
|
|
std::shared_ptr<streamfx::util::threadpool::threadpool> threadpool();
|
|
|
|
std::filesystem::path data_file_path(std::string_view file);
|
|
std::filesystem::path config_file_path(std::string_view file);
|
|
|
|
#ifdef ENABLE_FRONTEND
|
|
bool open_url(std::string_view url);
|
|
#endif
|
|
} // namespace streamfx
|