Blame


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