summaryrefslogtreecommitdiff
path: root/libappstream-glib/as-icon-private.h
blob: c695b8aeeb9922b7de3d80b2d1547fac7a0c4563 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
 *
 * Copyright (C) 2014 Richard Hughes <richard@hughsie.com>
 *
 * SPDX-License-Identifier: LGPL-2.1+
 */

#pragma once

#if !defined (__APPSTREAM_GLIB_PRIVATE_H) && !defined (AS_COMPILATION)
#error "Only <appstream-glib.h> can be included directly."
#endif

#include "as-icon.h"
#include "as-node-private.h"

G_BEGIN_DECLS

GBytes		*as_icon_get_data		(AsIcon		*icon);
void		 as_icon_set_data		(AsIcon		*icon,
						 GBytes		*data);

GNode		*as_icon_node_insert		(AsIcon		*icon,
						 GNode		*parent,
						 AsNodeContext	*ctx);
gboolean	 as_icon_node_parse		(AsIcon		*icon,
						 GNode		*node,
						 AsNodeContext	*ctx,
						 GError		**error);
gboolean	 as_icon_node_parse_dep11	(AsIcon		*icon,
						 GNode		*node,
						 AsNodeContext	*ctx,
						 GError		**error);

void		 as_icon_set_prefix_rstr	(AsIcon		*icon,
						 AsRefString	*rstr);

G_END_DECLS