blob: 7f48adaf2c35b585b04facc946468ea71e3ee2d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef MENU_H
#define MENU_H
#include <dbus/dbus.h>
#include <wayland-server-core.h>
/* The menu is built on demand and not kept around */
void menu_show (DBusConnection *conn, struct wl_event_loop *loop,
const char *busname, const char *busobj, const char **menucmd);
#endif /* MENU_H */
|