Last change
on this file since 109193 was 105420, checked in by vboxsync, 10 months ago |
libxml2-2.12.6: Applied and adjusted our libxml2 changes to 2.12.6. bugref:10730
|
File size:
583 bytes
|
Line | |
---|
1 | #ifndef XML_REGEXP_H_PRIVATE__
|
---|
2 | #define XML_REGEXP_H_PRIVATE__
|
---|
3 |
|
---|
4 | #include <libxml/xmlautomata.h>
|
---|
5 |
|
---|
6 | #ifdef LIBXML_REGEXP_ENABLED
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * -2 and -3 are used by xmlValidateElementType for other things.
|
---|
10 | */
|
---|
11 | #define XML_REGEXP_OK 0
|
---|
12 | #define XML_REGEXP_NOT_FOUND (-1)
|
---|
13 | #define XML_REGEXP_INTERNAL_ERROR (-4)
|
---|
14 | #define XML_REGEXP_OUT_OF_MEMORY (-5)
|
---|
15 | #define XML_REGEXP_INTERNAL_LIMIT (-6)
|
---|
16 | #define XML_REGEXP_INVALID_UTF8 (-7)
|
---|
17 |
|
---|
18 | XML_HIDDEN void
|
---|
19 | xmlAutomataSetFlags(xmlAutomataPtr am, int flags);
|
---|
20 |
|
---|
21 | #endif /* LIBXML_REGEXP_ENABLED */
|
---|
22 |
|
---|
23 | #endif /* XML_REGEXP_H_PRIVATE__ */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.