14 lines
359 B
C
14 lines
359 B
C
#ifndef _DBUS_WRAPPER_H
|
|
#define _DBUS_WRAPPER_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <dbus/dbus.h>
|
|
|
|
void handleDbusError(DBusError *err, const char *message);
|
|
DBusConnection *dbusConnect(void);
|
|
bool dbusCallMethod(DBusConnection *conn, const char *bus_name, const char *path,
|
|
const char *iface, const char *method);
|
|
|
|
#endif // !_DBUS_WRAPPER_H
|