diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-11-12 19:20:08 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-11-12 19:20:08 +0100 |
| commit | 34355d6b0c537ccdfcfcdb30e8c3e6672a8ee72b (patch) | |
| tree | 8e2b840786fa97fd2f6a2b41e601c1a0b69690bb /src/wrapped | |
| parent | 9557e4711f3435d886d81adb98a874cf00573769 (diff) | |
| download | box64-34355d6b0c537ccdfcfcdb30e8c3e6672a8ee72b.tar.gz box64-34355d6b0c537ccdfcfcdb30e8c3e6672a8ee72b.zip | |
Added some data symbol to wrapped libxml2 (for #161 but it would probably be better to wrap libxslt directly)
Diffstat (limited to 'src/wrapped')
| -rwxr-xr-x | src/wrapped/wrappedxml2_private.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/wrapped/wrappedxml2_private.h b/src/wrapped/wrappedxml2_private.h index 6703763b..bb0c1855 100755 --- a/src/wrapped/wrappedxml2_private.h +++ b/src/wrapped/wrappedxml2_private.h @@ -1606,3 +1606,10 @@ DATAM(xmlFree, sizeof(void*)) DATAM(xmlMalloc, sizeof(void*)) DATAM(xmlRealloc, sizeof(void*)) DATAM(xmlMemStrdup, sizeof(void*)) + +DATA(xmlIsDigitGroup, 2*sizeof(void*)+2*sizeof(int)) +DATA(xmlStringText, sizeof(void*)) +DATA(xmlStringTextNoenc, sizeof(void*)) +DATA(xmlIsCombiningGroup, 2*sizeof(void*)+2*sizeof(int)) +DATA(xmlIsExtenderGroup, 2*sizeof(void*)+2*sizeof(int)) +DATA(xmlIsBaseCharGroup, 2*sizeof(void*)+2*sizeof(int)) |