summaryrefslogtreecommitdiff
path: root/vapi/libxml-2.0.vapi
diff options
context:
space:
mode:
Diffstat (limited to 'vapi/libxml-2.0.vapi')
-rw-r--r--vapi/libxml-2.0.vapi6
1 files changed, 4 insertions, 2 deletions
diff --git a/vapi/libxml-2.0.vapi b/vapi/libxml-2.0.vapi
index 5665b5055..f0dfc9813 100644
--- a/vapi/libxml-2.0.vapi
+++ b/vapi/libxml-2.0.vapi
@@ -719,11 +719,13 @@ namespace Xml {
[Compact]
[CCode (cname = "xmlNs", cheader_filename = "libxml/tree.h")]
public class Ns {
- public Ns next;
+ [CCode (cname = "xmlNewNs")]
+ public static Ns* create (Xml.Node* node, string href, string prefix);
+ public Ns* next;
public ElementType type;
public string href;
public string prefix;
- public Doc context;
+ public Doc* context;
}
[Compact]