Fixed Button dll input/output.
This commit is contained in:
@@ -10,7 +10,7 @@ namespace ehs
|
||||
{
|
||||
private:
|
||||
Array<InputHandler*> handlers;
|
||||
bool initalized;
|
||||
bool initialized;
|
||||
|
||||
public:
|
||||
~Input();
|
||||
@@ -31,13 +31,13 @@ namespace ehs
|
||||
|
||||
void Poll();
|
||||
|
||||
bool HasHandler(const UInt_64 hashId) const;
|
||||
bool HasHandler(UInt_64 hashId) const;
|
||||
|
||||
bool HasHandler(const Str_8& id) const;
|
||||
|
||||
bool AddHandler(InputHandler* handler);
|
||||
|
||||
const InputHandler* GetHandler(const UInt_64 hashId) const;
|
||||
const InputHandler* GetHandler(UInt_64 hashId) const;
|
||||
|
||||
const InputHandler* GetHandler(const Str_8& id) const;
|
||||
|
||||
|
@@ -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;
|
||||
};
|
||||
|
Reference in New Issue
Block a user