summaryrefslogtreecommitdiff
path: root/Build/source/libs/expat/xmlwf/wfcheck.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/expat/xmlwf/wfcheck.h')
-rw-r--r--Build/source/libs/expat/xmlwf/wfcheck.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/Build/source/libs/expat/xmlwf/wfcheck.h b/Build/source/libs/expat/xmlwf/wfcheck.h
deleted file mode 100644
index ea8fe573502..00000000000
--- a/Build/source/libs/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);
-