]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
libxml-2.0: Add more fields to ParserCtxt
authorCorentin Noël <corentin.noel@collabora.com>
Thu, 10 Apr 2025 12:33:21 +0000 (14:33 +0200)
committerCorentin Noël <tintou@noel.tf>
Thu, 24 Apr 2025 13:38:51 +0000 (15:38 +0200)
The fields are actually required when using the ParserCtxt.

vapi/libxml-2.0.vapi

index 05c2535273c253ce834c98d7aa7e97c5ab4b5e90..5b812c6471345ca8f5e738edd38d92c65975540e 100644 (file)
@@ -924,6 +924,15 @@ namespace Xml {
                public SAXHandler* sax;
                [CCode (cname = "userData")]
                public void* user_data;
+               [CCode (cname = "myDoc")]
+               public Doc* my_doc;
+               [CCode (cname = "wellFormed")]
+               public int well_formed;
+               [CCode (type = "xmlChar*")]
+               public unowned string version;
+               [CCode (type = "xmlChar*")]
+               public unowned string encoding;
+               public int standalone;
 
                [CCode (cname = "xmlNewParserCtxt")]
                public ParserCtxt ();