diff options
author | Daniel Espinosa <esodan@gmail.com> | 2017-09-02 22:17:43 -0500 |
---|---|---|
committer | Rico Tzschichholz <ricotz@ubuntu.com> | 2017-09-03 09:38:18 +0200 |
commit | b3c279e6cb7a0272925d22f3a4dc44b58f50de19 (patch) | |
tree | 7f4f4ae49f22d0540840589434c3384658a2cd23 | |
parent | 652e01344d6adcb9d947ec75402561caa7efcb46 (diff) | |
download | vala-b3c279e6cb7a0272925d22f3a4dc44b58f50de19.tar.gz |
libxml-2.0: Bind xmlLastElementChild and xmlPreviousElementSibling
https://bugzilla.gnome.org/show_bug.cgi?id=787201
-rw-r--r-- | vapi/libxml-2.0.vapi | 6 |
1 files changed, 6 insertions, 0 deletions
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 (); } |