Scott James Remnant | 77853a2 | 2009-03-30 14:45:03 +0100 | [diff] [blame] | 1 | /* nih-dbus-tool |
| 2 | * |
| 3 | * Copyright © 2009 Scott James Remnant <scott@netsplit.com>. |
Scott James Remnant | 45585d0 | 2009-05-22 11:38:43 +0200 | [diff] [blame] | 4 | * Copyright © 2009 Canonical Ltd. |
Scott James Remnant | 77853a2 | 2009-03-30 14:45:03 +0100 | [diff] [blame] | 5 | * |
Scott James Remnant | ca5cdd3 | 2009-06-23 10:29:37 +0100 | [diff] [blame^] | 6 | * 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 Remnant | 77853a2 | 2009-03-30 14:45:03 +0100 | [diff] [blame] | 9 | * |
Scott James Remnant | ca5cdd3 | 2009-06-23 10:29:37 +0100 | [diff] [blame^] | 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 General Public License for more details. |
Scott James Remnant | 77853a2 | 2009-03-30 14:45:03 +0100 | [diff] [blame] | 14 | * |
Scott James Remnant | ca5cdd3 | 2009-06-23 10:29:37 +0100 | [diff] [blame^] | 15 | * 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 Remnant | 77853a2 | 2009-03-30 14:45:03 +0100 | [diff] [blame] | 18 | */ |
| 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 | |
| 29 | NIH_BEGIN_EXTERN |
| 30 | |
| 31 | int annotation_start_tag (XML_Parser xmlp, const char *tag, char * const *attr) |
| 32 | __attribute__ ((warn_unused_result)); |
| 33 | int annotation_end_tag (XML_Parser xmlp, const char *tag) |
| 34 | __attribute__ ((warn_unused_result)); |
| 35 | |
| 36 | NIH_END_EXTERN |
| 37 | |
| 38 | #endif /* NIH_DBUS_TOOL_ANNOTATION_H */ |