returns number of axis/buttons and keys from selected device */
| 9148 | |
| 9149 | /* returns number of axis/buttons and keys from selected device */ |
| 9150 | int inputdevice_get_widget_num (int devnum) |
| 9151 | { |
| 9152 | const struct inputdevice_functions *idf = getidf (devnum); |
| 9153 | return idf->get_widget_num (inputdevice_get_device_index (devnum)); |
| 9154 | } |
| 9155 | |
| 9156 | // return name of event, do not use ie->name directly |
| 9157 | bool inputdevice_get_eventname (const struct inputevent *ie, TCHAR *out) |
no test coverage detected