| 2823 | // ============================================================================= |
| 2824 | |
| 2825 | void rcli_set_transcript_callback(RCLIHandle handle, RCLITranscriptCallback cb, void* user_data) { |
| 2826 | if (!handle) return; |
| 2827 | auto* engine = static_cast<RCLIEngine*>(handle); |
| 2828 | engine->transcript_cb = cb; |
| 2829 | engine->transcript_ud = user_data; |
| 2830 | } |
| 2831 | |
| 2832 | void rcli_set_state_callback(RCLIHandle handle, RCLIStateCallback cb, void* user_data) { |
| 2833 | if (!handle) return; |
no outgoing calls
no test coverage detected