mirror of
https://github.com/jessicanataliagta/PSPRecomp
synced 2026-09-26 16:49:34 -04:00
37e5469cbd
initial release
19 lines
477 B
C++
19 lines
477 B
C++
#pragma once
|
|
|
|
#include <filesystem>
|
|
#include <string>
|
|
#include <string_view>
|
|
|
|
namespace vcs {
|
|
|
|
struct VcsConfiguration;
|
|
|
|
void runtime_log_initialize(const VcsConfiguration &configuration);
|
|
void runtime_log_shutdown() noexcept;
|
|
[[nodiscard]] bool runtime_log_enabled() noexcept;
|
|
[[nodiscard]] std::filesystem::path runtime_log_path();
|
|
void runtime_log_line(std::string_view line);
|
|
void runtime_log_error(std::string_view category, std::string_view message);
|
|
|
|
} // namespace vcs
|