19 lines
517 B
C++
19 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
|