======================================================================== Force Feedback Effect Functions ======================================================================== */ ------------------------------------------------------------------- ddio_ff_GetInfo Purpose: Returns information about the current state of the low-level Force Feedback system. --------
| 156 | // Force Feedback system. |
| 157 | // ------------------------------------------------------------------- |
| 158 | void ddio_ff_GetInfo(bool *ff_found, bool *ff_enabled) { |
| 159 | if (ff_found) |
| 160 | *ff_found = false; |
| 161 | if (ff_enabled) |
| 162 | *ff_enabled = false; |
| 163 | } |
| 164 | |
| 165 | // ------------------------------------------------------------------- |
| 166 | // ddio_ffb_Pause |
no outgoing calls
no test coverage detected