Fixed Button dll input/output.

This commit is contained in:
2025-10-09 07:43:03 -07:00
parent 7db8486f1e
commit d60d4c27ab
3 changed files with 21 additions and 21 deletions

View File

@@ -31,9 +31,9 @@ namespace ehs
InputHandler& operator=(const InputHandler& ih);
bool operator==(const UInt_64 otherHashId) const;
bool operator==(UInt_64 otherHashId) const;
bool operator!=(const UInt_64 otherHashId) const;
bool operator!=(UInt_64 otherHashId) const;
virtual bool Initialize();
@@ -47,13 +47,13 @@ namespace ehs
void ResetAllStates();
bool HasDevice(const UInt_64 id) const;
bool HasDevice(UInt_64 id) const;
bool AddDevice(HID* device);
HID* GetDevice(const UInt_64 id) const;
HID* GetDevice(UInt_64 id) const;
HID* GetDeviceByType(const UInt_8 type) const;
HID* GetDeviceByType(UInt_8 type) const;
virtual bool IsInitialized() const;
};