#include "types.h"
#include <expat.h>
Go to the source code of this file.
Enumerations | |
enum | scew_error { scew_error_none, scew_error_no_memory, scew_error_io, scew_error_callback, scew_error_expat, scew_error_count } |
Functions | |
scew_error | scew_error_code () |
XML_Char const * | scew_error_string (scew_error code) |
enum XML_Error | scew_error_expat_code (scew_parser *parser) |
XML_Char const * | scew_error_expat_string (enum XML_Error code) |
int | scew_error_expat_line (scew_parser *parser) |
int | scew_error_expat_column (scew_parser *parser) |
These are SCEW error functions which return error codes and strings. It also return Expat errors.
|
This is the type declaration of the SCEW error. That is, an enumeration of all SCEW possible errors. |
|
Returns the SCEW internal error code. If the error code returned is
|
|
Returns a string describing the internal SCEW error. Note: if an unknown error code is given a non thread safe string is returned. |
|
Returns the Expat internal error code. |
|
Returns a string describing the internal Expat error. |
|
Returns the current line at which the error was detected. |
|
Returns the current column at which the error was detected. |