From 7a55303675779995a96f3c3e715fff349174046d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Corentin=20No=C3=ABl?= Date: Thu, 10 Apr 2025 14:33:21 +0200 Subject: [PATCH] libxml-2.0: Add more fields to ParserCtxt The fields are actually required when using the ParserCtxt. --- vapi/libxml-2.0.vapi | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/vapi/libxml-2.0.vapi b/vapi/libxml-2.0.vapi index 05c253527..5b812c647 100644 --- a/vapi/libxml-2.0.vapi +++ b/vapi/libxml-2.0.vapi @@ -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 (); -- 2.47.2