From: Daniel Espinosa Date: Sun, 3 Sep 2017 03:17:43 +0000 (-0500) Subject: libxml-2.0: Bind xmlLastElementChild and xmlPreviousElementSibling X-Git-Tag: 0.38.0~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b3c279e6cb7a0272925d22f3a4dc44b58f50de19;p=thirdparty%2Fvala.git libxml-2.0: Bind xmlLastElementChild and xmlPreviousElementSibling https://bugzilla.gnome.org/show_bug.cgi?id=787201 --- diff --git a/vapi/libxml-2.0.vapi b/vapi/libxml-2.0.vapi index 9e1e8ff58..273b0a542 100644 --- a/vapi/libxml-2.0.vapi +++ b/vapi/libxml-2.0.vapi @@ -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 (); }