]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
libxml-2.0: Bind xmlLastElementChild and xmlPreviousElementSibling
authorDaniel Espinosa <esodan@gmail.com>
Sun, 3 Sep 2017 03:17:43 +0000 (22:17 -0500)
committerRico Tzschichholz <ricotz@ubuntu.com>
Sun, 3 Sep 2017 08:39:26 +0000 (10:39 +0200)
https://bugzilla.gnome.org/show_bug.cgi?id=787201

vapi/libxml-2.0.vapi

index 9e1e8ff581630cc7b0e1fb11b97aadf6206c9a1c..273b0a542d66a81cd726d3e642bc57585d6fed26 100644 (file)
@@ -878,9 +878,15 @@ namespace Xml {
                [CCode (cname = "xmlNextElementSibling")]
                public Node* next_element_sibling ();
 
+               [CCode (cname = "xmlPreviousElementSibling")]
+               public Node* previous_element_sibling ();
+
                [CCode (cname = "xmlFirstElementChild")]
                public Node* first_element_child ();
 
+               [CCode (cname = "xmlLastElementChild")]
+               public Node* last_element_child ();
+
                [CCode (cname = "xmlChildElementCount")]
                public ulong child_element_count ();
        }