mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 13:14:59 +00:00
Change GetErrorCode return type to enum XML_ErrorCode.
This commit is contained in:
parent
650ce08322
commit
03f202d614
2 changed files with 2 additions and 2 deletions
|
@ -599,7 +599,7 @@ void *XML_GetBuffer(XML_Parser parser, int len)
|
|||
return bufferEnd;
|
||||
}
|
||||
|
||||
int XML_GetErrorCode(XML_Parser parser)
|
||||
enum XML_Error XML_GetErrorCode(XML_Parser parser)
|
||||
{
|
||||
return errorCode;
|
||||
}
|
||||
|
|
|
@ -305,7 +305,7 @@ long XMLPARSEAPI XML_GetCurrentByteIndex(XML_Parser parser);
|
|||
/* If XML_Parser or XML_ParseEnd have returned 0, then XML_GetErrorCode
|
||||
returns information about the error. */
|
||||
|
||||
int XMLPARSEAPI XML_GetErrorCode(XML_Parser parser);
|
||||
enum XML_Error XMLPARSEAPI XML_GetErrorCode(XML_Parser parser);
|
||||
|
||||
void XMLPARSEAPI
|
||||
XML_ParserFree(XML_Parser parser);
|
||||
|
|
Loading…
Add table
Reference in a new issue