1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/pre-inst/post.h Thu Jul 16 23:02:31 2020 +0100
1.3 @@ -0,0 +1,24 @@
1.4 +#ifndef __POST_H__
1.5 +#define __POST_H__
1.6 +
1.7 +#include <glib.h>
1.8 +
1.9 +G_BEGIN_DECLS
1.10 +
1.11 +struct post
1.12 +{
1.13 + gchar *install_prefix;
1.14 + gchar *repository;
1.15 + int argc;
1.16 + char **argv;
1.17 +};
1.18 +
1.19 +struct post *pre_install_post_new(const char *repository,
1.20 + const char *install_prefix);
1.21 +void pre_install_post_free(struct post *post);
1.22 +gboolean pre_install_post_load_uri(struct post *post,const char *uri,
1.23 + GError **error);
1.24 +
1.25 +G_END_DECLS
1.26 +
1.27 +#endif /* __POST_H__ */