htc: implement htcmisc service object commands

This commit is contained in:
Michael Scire
2021-02-23 15:47:28 -08:00
committed by SciresM
parent 8b32b9eadf
commit b5ab491603
13 changed files with 302 additions and 41 deletions

View File

@@ -41,6 +41,9 @@ namespace ams::htc::server {
Result Start();
void UpdateEvent();
public:
os::SystemEvent *GetConnectEvent() { return std::addressof(m_connect_event); }
os::SystemEvent *GetDisconnectEvent() { return std::addressof(m_disconnect_event); }
};
}