Blame


1 83f0f95a 2022-09-29 op #include_next "event.h"
2 83f0f95a 2022-09-29 op
3 83f0f95a 2022-09-29 op #include "../config.h"
4 83f0f95a 2022-09-29 op
5 83f0f95a 2022-09-29 op #if !HAVE_EVENT_ASR_RUN
6 83f0f95a 2022-09-29 op struct asr_query;
7 83f0f95a 2022-09-29 op struct asr_result;
8 83f0f95a 2022-09-29 op struct event_asr;
9 83f0f95a 2022-09-29 op
10 83f0f95a 2022-09-29 op struct event_asr *event_asr_run(struct asr_query *,
11 83f0f95a 2022-09-29 op void (*cb)(struct asr_result *, void *), void *);
12 83f0f95a 2022-09-29 op void event_asr_abort(struct event_asr *);
13 83f0f95a 2022-09-29 op #endif