blob: 50f4464d1238cc182c01e571eb26738aa4de2b2a [file] [log] [blame]
Scott James Remnant77853a22009-03-30 14:45:03 +01001/* nih-dbus-tool
2 *
3 * Copyright © 2009 Scott James Remnant <scott@netsplit.com>.
Scott James Remnant45585d02009-05-22 11:38:43 +02004 * Copyright © 2009 Canonical Ltd.
Scott James Remnant77853a22009-03-30 14:45:03 +01005 *
Scott James Remnantca5cdd32009-06-23 10:29:37 +01006 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2, as
8 * published by the Free Software Foundation.
Scott James Remnant77853a22009-03-30 14:45:03 +01009 *
Scott James Remnantca5cdd32009-06-23 10:29:37 +010010 * 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 General Public License for more details.
Scott James Remnant77853a22009-03-30 14:45:03 +010014 *
Scott James Remnantca5cdd32009-06-23 10:29:37 +010015 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Scott James Remnant77853a22009-03-30 14:45:03 +010018 */
19
20#ifndef NIH_DBUS_TOOL_ANNOTATION_H
21#define NIH_DBUS_TOOL_ANNOTATION_H
22
23#include <expat.h>
24
25#include <nih/macros.h>
26#include <nih/list.h>
27
28
29NIH_BEGIN_EXTERN
30
31int annotation_start_tag (XML_Parser xmlp, const char *tag, char * const *attr)
32 __attribute__ ((warn_unused_result));
33int annotation_end_tag (XML_Parser xmlp, const char *tag)
34 __attribute__ ((warn_unused_result));
35
36NIH_END_EXTERN
37
38#endif /* NIH_DBUS_TOOL_ANNOTATION_H */