Greenbone Vulnerability Manager  22.4.0~dev1
gmp_delete.h
1 /* Copyright (C) 2018-2022 Greenbone Networks GmbH
2  *
3  * SPDX-License-Identifier: AGPL-3.0-or-later
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU Affero General Public License as
7  * published by the Free Software Foundation, either version 3 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU Affero General Public License for more details.
14  *
15  * You should have received a copy of the GNU Affero General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  */
18 
19 #ifndef _GVMD_GMP_DELETE_H
20 #define _GVMD_GMP_DELETE_H
21 
22 #include "gmp_base.h"
23 
24 #include <glib.h>
25 
26 void
27 delete_start (const gchar *, const gchar *, const gchar **, const gchar **);
28 
29 void
30 delete_run (gmp_parser_t *, GError **);
31 
32 #endif /* not _GVMD_GMP_DELETE_H */
void delete_run(gmp_parser_t *gmp_parser, GError **error)
Handle end element.
Definition: gmp_delete.c:112
void delete_start(const gchar *type, const gchar *type_capital, const gchar **attribute_names, const gchar **attribute_values)
Handle start element.
Definition: gmp_delete.c:79
A handle on a GMP parser.
Definition: gmp_base.h:28