File: as-provide-private.h

package info (click to toggle)
appstream-glib 0.7.18-1%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 6,568 kB
  • sloc: ansic: 38,806; xml: 839; sh: 25; makefile: 24; cpp: 1
file content (31 lines) | stat: -rw-r--r-- 778 bytes parent folder | download | duplicates (3)
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
/* -*- 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-provide.h"
#include "as-node-private.h"

G_BEGIN_DECLS

GNode		*as_provide_node_insert		(AsProvide	*provide,
						 GNode		*parent,
						 AsNodeContext	*ctx);
gboolean	 as_provide_node_parse		(AsProvide	*provide,
						 GNode		*node,
						 AsNodeContext	*ctx,
						 GError		**error);
gboolean	 as_provide_node_parse_dep11	(AsProvide	*provide,
						 GNode		*node,
						 AsNodeContext	*ctx,
						 GError		**error);

G_END_DECLS