mirror of
https://github.com/mer-hybris/libgbinder
synced 2025-11-07 08:25:34 +08:00
[gbinder] Add missing implementation for gbinder_writer_append_fds
This commit is contained in:
@@ -236,7 +236,7 @@ void
|
|||||||
gbinder_writer_append_fds(
|
gbinder_writer_append_fds(
|
||||||
GBinderWriter* writer,
|
GBinderWriter* writer,
|
||||||
const GBinderFds* fds,
|
const GBinderFds* fds,
|
||||||
const GBinderParent* parent); /* Since 1.1.14 */
|
const GBinderParent* parent); /* Since 1.1.43 */
|
||||||
|
|
||||||
guint
|
guint
|
||||||
gbinder_writer_append_buffer_object_with_parent(
|
gbinder_writer_append_buffer_object_with_parent(
|
||||||
|
|||||||
@@ -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
|
guint
|
||||||
gbinder_writer_append_buffer_object_with_parent(
|
gbinder_writer_append_buffer_object_with_parent(
|
||||||
GBinderWriter* self,
|
GBinderWriter* self,
|
||||||
|
|||||||
Reference in New Issue
Block a user