mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-02 21:11:17 +12:00
15 lines
282 B
C++
15 lines
282 B
C++
#pragma once
|
|
|
|
namespace nsyshid
|
|
{
|
|
class Backend;
|
|
|
|
void AttachBackend(const std::shared_ptr<Backend>& backend);
|
|
|
|
void DetachBackend(const std::shared_ptr<Backend>& backend);
|
|
|
|
void save(MemStreamWriter& s);
|
|
void restore(MemStreamReader& s);
|
|
|
|
void load();
|
|
} // namespace nsyshid
|