Commit 8f9a86189d9961f3ffb5a40f985835dd3394c874

Authored by Perry Werneck
1 parent 1680e4db
Exists in master and in 1 other branch develop

Working on new D-Bus API.

src/linux/dbus-definition.xml 0 → 100644
... ... @@ -0,0 +1,9 @@
  1 +<?xml version="1.0" encoding="UTF-8" ?>
  2 +<node name="/br/com/bb/pw3270">
  3 + <interface name="br.com.bb.pw3270">
  4 + <method name="getRevision">
  5 + <annotation name="org.freedesktop.DBus.GLib.Async" value="true"/>
  6 + <arg type="s" name="revision" direction="out" />
  7 + </method>
  8 + </interface>
  9 +</node>
... ...
src/linux/gobject.c
... ... @@ -22,7 +22,7 @@
22 22 *
23 23 * Referências:
24 24 *
25   - * https://github.com/fbuihuu/samples-dbus/blob/master/dbus-server.c
  25 + * https://github.com/joprietoe/gdbus/blob/master/gdbus-example-server.c
26 26 *
27 27 * Contatos:
28 28 *
... ...
src/linux/gobject.h
... ... @@ -63,7 +63,6 @@
63 63 GObjectClass parent;
64 64 };
65 65  
66   -
67 66 G_END_DECLS
68 67  
69 68 #endif // LINUX_PRIVATE_H_INCLUDED
... ...