| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Summary: error handling | 2 * Summary: error handling |
| 3 * Description: the API used to report errors | 3 * Description: the API used to report errors |
| 4 * | 4 * |
| 5 * Copy: See Copyright for the status of this software. | 5 * Copy: See Copyright for the status of this software. |
| 6 * | 6 * |
| 7 * Author: Daniel Veillard | 7 * Author: Daniel Veillard |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 #include <libxml/parser.h> | 10 #include <libxml/parser.h> |
| (...skipping 919 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 930 const char *str3, | 930 const char *str3, |
| 931 int int1, | 931 int int1, |
| 932 int col, | 932 int col, |
| 933 const char *msg, | 933 const char *msg, |
| 934 ...) LIBXML_ATTR_FORMAT(16,17); | 934 ...) LIBXML_ATTR_FORMAT(16,17); |
| 935 XMLPUBFUN void XMLCALL | 935 XMLPUBFUN void XMLCALL |
| 936 __xmlSimpleError (int domain, | 936 __xmlSimpleError (int domain, |
| 937 int code, | 937 int code, |
| 938 xmlNodePtr node, | 938 xmlNodePtr node, |
| 939 const char *msg, | 939 const char *msg, |
| 940 » » » » const char *extra); | 940 » » » » const char *extra) LIBXML_ATTR_FORMAT(4,0); |
| 941 #endif | 941 #endif |
| 942 #ifdef __cplusplus | 942 #ifdef __cplusplus |
| 943 } | 943 } |
| 944 #endif | 944 #endif |
| 945 #endif /* __XML_ERROR_H__ */ | 945 #endif /* __XML_ERROR_H__ */ |
| OLD | NEW |