/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- * * Copyright (C) 2012-2024 Matthias Klumpp * * Licensed under the GNU Lesser General Public License Version 2.1 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 2.1 of the license, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see . */ #ifndef __ASCLI_ACTIONS_MDATA_H #define __ASCLI_ACTIONS_MDATA_H #include #include G_BEGIN_DECLS int ascli_what_provides (const gchar *cachepath, const gchar *kind_str, const gchar *item, gboolean detailed); int ascli_search_component (const gchar *cachepath, const gchar *search_term, gboolean detailed, gboolean no_cache); int ascli_get_component (const gchar *cachepath, const gchar *identifier, gboolean detailed, gboolean no_cache); int ascli_list_categories (const gchar *cachepath, gchar **categories, gboolean detailed, gboolean no_cache); int ascli_refresh_cache (const gchar *cachepath, const gchar *datapath, const gchar *const *sources_str, gboolean forced); int ascli_dump_component (const gchar *cachepath, const gchar *identifier, AsFormatKind mformat, gboolean no_cache); int ascli_put_metainfo (const gchar *fname, const gchar *origin, gboolean for_user); int ascli_convert_data (const gchar *in_fname, const gchar *out_fname, AsFormatKind mformat); int ascli_create_metainfo_template (const gchar *out_fname, const gchar *cpt_kind_str, const gchar *desktop_file); gint ascli_check_is_satisfied (const gchar *fname_or_cid, const gchar *cachepath, gboolean no_cache); gint ascli_check_syscompat (const gchar *fname_or_cid, const gchar *cachepath, gboolean no_cache, gboolean show_details); G_END_DECLS #endif /* __ASCLI_ACTIONS_MDATA_H */