@@ -31,14 +31,14 @@ const char* ffDBusLoadData(DBusBusType busType, FFDBusData* data); //Returns an
31
31
bool ffDBusGetString (FFDBusData * dbus , DBusMessageIter * iter , FFstrbuf * result );
32
32
bool ffDBusGetBool (FFDBusData * dbus , DBusMessageIter * iter , bool * result );
33
33
bool ffDBusGetUint (FFDBusData * dbus , DBusMessageIter * iter , uint32_t * result );
34
- DBusMessage * ffDBusGetMethodReply (FFDBusData * dbus , const char * busName , const char * objectPath , const char * interface , const char * method , const char * arg );
34
+ DBusMessage * ffDBusGetMethodReply (FFDBusData * dbus , const char * busName , const char * objectPath , const char * interface , const char * method , const char * arg1 , const char * arg2 );
35
35
DBusMessage * ffDBusGetProperty (FFDBusData * dbus , const char * busName , const char * objectPath , const char * interface , const char * property );
36
36
bool ffDBusGetPropertyString (FFDBusData * dbus , const char * busName , const char * objectPath , const char * interface , const char * property , FFstrbuf * result );
37
37
bool ffDBusGetPropertyUint (FFDBusData * dbus , const char * busName , const char * objectPath , const char * interface , const char * property , uint32_t * result );
38
38
39
39
static inline DBusMessage * ffDBusGetAllProperties (FFDBusData * dbus , const char * busName , const char * objectPath , const char * interface )
40
40
{
41
- return ffDBusGetMethodReply (dbus , busName , objectPath , "org.freedesktop.DBus.Properties" , "GetAll" , interface );
41
+ return ffDBusGetMethodReply (dbus , busName , objectPath , "org.freedesktop.DBus.Properties" , "GetAll" , interface , NULL );
42
42
}
43
43
44
44
#endif // FF_HAVE_DBUS
0 commit comments