Greenbone Vulnerability Manager  9.0.1
gmp_delete.h
1 /* GVM
2  * $Id$
3  * Description: GVM GMP layer: Common DELETE command headers.
4  *
5  * Authors:
6  * Matthew Mundell <matthew.mundell@greenbone.net>
7  *
8  * Copyright:
9  * Copyright (C) 2018 Greenbone Networks GmbH
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License
13  * as published by the Free Software Foundation; either version 2
14  * of the License, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24  */
25 
26 #ifndef _GVMD_GMP_DELETE_H
27 #define _GVMD_GMP_DELETE_H
28 
29 #include "gmp_base.h"
30 
31 #include <glib.h>
32 
33 void
34 delete_start (const gchar *, const gchar *, const gchar **, const gchar **);
35 
36 void
37 delete_run (gmp_parser_t *, GError **);
38 
39 #endif /* not _GVMD_GMP_DELETE_H */
void delete_run(gmp_parser_t *gmp_parser, GError **error)
Handle end element.
Definition: gmp_delete.c:119
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:86
A handle on a GMP parser.
Definition: gmp_base.h:35