[gbinder] Add missing implementation for gbinder_writer_append_fds

This commit is contained in:
Matti Lehtimäki
2025-09-15 00:20:23 +03:00
parent a700dddad8
commit d385197788
2 changed files with 14 additions and 1 deletions

View File

@@ -236,7 +236,7 @@ void
gbinder_writer_append_fds(
GBinderWriter* writer,
const GBinderFds* fds,
const GBinderParent* parent); /* Since 1.1.14 */
const GBinderParent* parent); /* Since 1.1.43 */
guint
gbinder_writer_append_buffer_object_with_parent(

View File

@@ -732,6 +732,19 @@ gbinder_writer_data_append_fds(
}
}
void
gbinder_writer_append_fds(
GBinderWriter* self,
const GBinderFds *fds,
const GBinderParent* parent) /* Since 1.0.43 */
{
GBinderWriterData* data = gbinder_writer_data(self);
if (G_LIKELY(data)) {
gbinder_writer_data_append_fds(data, fds, parent);
}
}
guint
gbinder_writer_append_buffer_object_with_parent(
GBinderWriter* self,