From af270239fa00eb4ca295fb4d866064bfd8a767b7 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Wed, 1 Dec 2021 16:55:24 +0100 Subject: ASAP::O: Pass filename through --- src/im-asapo.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/im-asapo.h') diff --git a/src/im-asapo.h b/src/im-asapo.h index 61d237db..26546a88 100644 --- a/src/im-asapo.h +++ b/src/im-asapo.h @@ -44,7 +44,8 @@ extern struct im_asapo *im_asapo_connect(const char *endpoint, extern void im_asapo_shutdown(struct im_asapo *a); -extern void *im_asapo_fetch(struct im_asapo *a, size_t *pdata_size); +extern void *im_asapo_fetch(struct im_asapo *a, size_t *pdata_size, + char **pfilename, char **pevent); extern char *im_asapo_make_unique_group_id(const char *endpoint, const char *token); @@ -64,9 +65,12 @@ static UNUSED void im_asapo_shutdown(struct im_asapo *a) { } -static UNUSED void *im_asapo_fetch(struct im_asapo *a, size_t *psize) +static UNUSED void *im_asapo_fetch(struct im_asapo *a, size_t *psize, + char **pfilename, char **pevent) { *psize = 0; + *pfilename = NULL; + *pevent = NULL; return NULL; } -- cgit v1.2.3