mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 21:28:51 +00:00
ControllerInterface: mixed comments
This commit is contained in:
parent
c285ae57fb
commit
f90d851e25
5 changed files with 21 additions and 0 deletions
|
@ -67,6 +67,9 @@ public:
|
|||
void Shutdown();
|
||||
void AddDevice(std::shared_ptr<ciface::Core::Device> device);
|
||||
void RemoveDevice(std::function<bool(const ciface::Core::Device*)> callback);
|
||||
// This is mandatory to use on device populations functions that can be called concurrently by
|
||||
// more than one thread, or that are called by a single other thread.
|
||||
// Without this, our devices list might end up in a mixed state.
|
||||
void PlatformPopulateDevices(std::function<void()> callback);
|
||||
bool IsInit() const { return m_is_init; }
|
||||
void UpdateInput();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue