| 43 | }; |
| 44 | |
| 45 | OSVR_ReturnCode |
| 46 | osvrDeviceButtonConfigure(OSVR_INOUT_PTR OSVR_DeviceInitOptions opts, |
| 47 | OSVR_OUT_PTR OSVR_ButtonDeviceInterface *iface, |
| 48 | OSVR_IN OSVR_ChannelCount numChan) { |
| 49 | OSVR_PLUGIN_HANDLE_NULL_CONTEXT("osvrDeviceButtonConfigure", opts); |
| 50 | OSVR_PLUGIN_HANDLE_NULL_CONTEXT("osvrDeviceButtonConfigure", iface); |
| 51 | OSVR_ButtonDeviceInterface ifaceObj = |
| 52 | opts->makeInterfaceObject<OSVR_ButtonDeviceInterfaceObject>(); |
| 53 | *iface = ifaceObj; |
| 54 | opts->setButtons(numChan, ifaceObj->button); |
| 55 | return OSVR_RETURN_SUCCESS; |
| 56 | } |
| 57 | |
| 58 | OSVR_ReturnCode osvrDeviceButtonSetValue(OSVR_IN_PTR OSVR_DeviceToken dev, |
| 59 | OSVR_IN_PTR OSVR_ButtonDeviceInterface |
no test coverage detected