snot

simple notification daemon for wayland

Files | Log | Commits | Refs | README


dbus.h

Size: 294 bytes

#ifndef DBUS_H
#define DBUS_H

#include <stdint.h>
#include <dbus/dbus.h>

#define SNOT_DBUS_INTERFACE "org.freedesktop.Notifications"
#define SNOT_DBUS_PATH "/org/freedesktop/Notifications"

int dbus_get_fd(void);
int dbus_init(void);
void dbus_destroy(void);
int dbus_dispatch(void);

#endif