X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fclock.c;h=e2cc19faf2eff050f70b7dcdf2447a45dacd8696;hb=8a494c57ceba6c98ff89a4af2e50f32b8ad85cf5;hp=a742557d86995dfdb74a83fb7b111d907bc417c7;hpb=b08159ef475aa8be92cd87504da97321a099e55c;p=framework%2Fconnectivity%2Fconnman.git diff --git a/src/clock.c b/src/clock.c index a742557..e2cc19f 100644 --- a/src/clock.c +++ b/src/clock.c @@ -308,14 +308,19 @@ static DBusMessage *set_property(DBusConnection *conn, return g_dbus_create_reply(msg, DBUS_TYPE_INVALID); } -static GDBusMethodTable clock_methods[] = { - { "GetProperties", "", "a{sv}", get_properties }, - { "SetProperty", "sv", "", set_property }, +static const GDBusMethodTable clock_methods[] = { + { GDBUS_METHOD("GetProperties", + NULL, GDBUS_ARGS({ "properties", "a{sv}" }), + get_properties) }, + { GDBUS_METHOD("SetProperty", + GDBUS_ARGS({ "name", "s" }, { "value", "v" }), NULL, + set_property) }, { }, }; -static GDBusSignalTable clock_signals[] = { - { "PropertyChanged", "sv" }, +static const GDBusSignalTable clock_signals[] = { + { GDBUS_SIGNAL("PropertyChanged", + GDBUS_ARGS({ "name", "s" }, { "value", "v" })) }, { }, };