mirror of
https://github.com/mer-hybris/libgbinder
synced 2025-11-04 06:44:08 +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(
|
||||
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(
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user