Save the reading position in the parameter.
| 115 | |
| 116 | // Save the reading position in the parameter. |
| 117 | void InputDevices::indev::getPos(fpos_t* out) const |
| 118 | { |
| 119 | fb_assert(out); |
| 120 | fb_assert(indev_fpointer); |
| 121 | os_utils::fgetpos(indev_fpointer, out); |
| 122 | } |
| 123 | |
| 124 | // Restore a previously stored reading position held in the parameter. |
| 125 | void InputDevices::indev::setPos(const fpos_t* in) |
no test coverage detected