mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
13 lines
323 B
C++
13 lines
323 B
C++
#pragma once
|
|
|
|
namespace nall {
|
|
|
|
struct service {
|
|
explicit operator bool() const { return false; }
|
|
auto command(const string& name, const string& command) -> bool { return false; }
|
|
auto receive() -> string { return ""; }
|
|
auto name() const -> string { return ""; }
|
|
auto stop() const -> bool { return false; }
|
|
};
|
|
|
|
}
|