diff options
Diffstat (limited to 'dbus/dbus-sysdeps-unix.c')
| -rw-r--r-- | dbus/dbus-sysdeps-unix.c | 9 | 
1 files changed, 9 insertions, 0 deletions
diff --git a/dbus/dbus-sysdeps-unix.c b/dbus/dbus-sysdeps-unix.c index ebb269c1..23296712 100644 --- a/dbus/dbus-sysdeps-unix.c +++ b/dbus/dbus-sysdeps-unix.c @@ -169,6 +169,15 @@ _dbus_write_socket (int               fd,    return _dbus_write (fd, buffer, start, len);  } +int +_dbus_write_pipe (DBusPipe         pipe, +                  const DBusString *buffer, +                  int               start, +                  int               len) +{ +	return _dbus_write (pipe, buffer, start, len); +} +  /**   * Like _dbus_write_two() but only works on sockets and is thus   * available on Windows.  | 
