mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-23 10:24:54 -05:00
13 lines
284 B
C++
13 lines
284 B
C++
#pragma once
|
|
#include "export-symbol-helper.hpp"
|
|
|
|
#include <mutex>
|
|
|
|
namespace advss {
|
|
|
|
[[nodiscard]] EXPORT std::mutex *GetMutex();
|
|
[[nodiscard]] EXPORT std::lock_guard<std::mutex> LockContext();
|
|
[[nodiscard]] EXPORT std::unique_lock<std::mutex> *GetLoopLock();
|
|
|
|
} // namespace advss
|