diff options
Diffstat (limited to 'Build/source/extra/expat/xmlwf/wfcheck.h')
-rw-r--r-- | Build/source/extra/expat/xmlwf/wfcheck.h | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/Build/source/extra/expat/xmlwf/wfcheck.h b/Build/source/extra/expat/xmlwf/wfcheck.h deleted file mode 100644 index ea8fe573502..00000000000 --- a/Build/source/extra/expat/xmlwf/wfcheck.h +++ /dev/null @@ -1,38 +0,0 @@ - -#include <stddef.h> - -enum WfCheckResult { - wellFormed, - noMemory, - syntaxError, - noElements, - invalidToken, - unclosedToken, - partialChar, - tagMismatch, - duplicateAttribute, - junkAfterDocElement, - paramEntityRef, - undefinedEntity, - recursiveEntityRef, - asyncEntity, - badCharRef, - binaryEntityRef, - attributeExternalEntityRef, - misplacedXmlPi, - unknownEncoding, - incorrectEncoding -}; - -enum EntityType { - documentEntity, - generalTextEntity -}; - -enum WfCheckResult wfCheck(enum EntityType entityType, - const char *s, size_t n, - const char **errorPtr, - unsigned long *errorLineNumber, - unsigned long *errorColNumber); -const char *wfCheckMessage(enum WfCheckResult); - |