CECD: Stub GetChangeStateEventHandle (#776)

* CECD: Stub GetChangeStateEventHandle

* More CECD
This commit is contained in:
wheremyfoodat 2025-07-08 02:18:13 +03:00 committed by GitHub
parent 94d78edb49
commit 8ba3b1ceca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 39 additions and 3 deletions

View file

@ -18,10 +18,13 @@ class CECDService {
MAKE_LOG_FUNCTION(log, cecdLogger)
std::optional<Handle> infoEvent;
std::optional<Handle> changeStateEvent;
// Service commands
void getChangeStateEventHandle(u32 messagePointer);
void getInfoEventHandle(u32 messagePointer);
void openAndRead(u32 messagePointer);
void stop(u32 messagePointer);
public:
CECDService(Memory& mem, Kernel& kernel) : mem(mem), kernel(kernel) {}