aboutsummaryrefslogtreecommitdiff
path: root/src/device/device_io_hid.hpp
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2019-01-28 21:27:10 +0200
committerRiccardo Spagni <ric@spagni.net>2019-01-28 21:27:10 +0200
commit77e96d09488b65921b158de5297342082a06e964 (patch)
tree0a33cd71ad0564bc1c5f03a72f37d2aa5a68330d /src/device/device_io_hid.hpp
parentMerge pull request #5054 (diff)
parentdevice: proper handling of user input (diff)
downloadmonero-77e96d09488b65921b158de5297342082a06e964.tar.xz
Merge pull request #5055
6c060e6a device: proper handling of user input (selsta)
Diffstat (limited to 'src/device/device_io_hid.hpp')
-rw-r--r--src/device/device_io_hid.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/device_io_hid.hpp b/src/device/device_io_hid.hpp
index bb0f0a814..c47eefad2 100644
--- a/src/device/device_io_hid.hpp
+++ b/src/device/device_io_hid.hpp
@@ -100,7 +100,7 @@ namespace hw {
void connect(void *params);
void connect(unsigned int vid, unsigned int pid, boost::optional<int> interface_number, boost::optional<unsigned short> usage_page);
bool connected() const;
- int exchange(unsigned char *command, unsigned int cmd_len, unsigned char *response, unsigned int max_resp_len);
+ int exchange(unsigned char *command, unsigned int cmd_len, unsigned char *response, unsigned int max_resp_len, bool user_input);
void disconnect();
void release();
};