mirror of
https://github.com/lbonn/rofi
synced 2024-11-30 07:40:26 +00:00
13 lines
342 B
C
13 lines
342 B
C
#ifndef ROFI_XCB_DUMMY_H
|
|
#define ROFI_XCB_DUMMY_H
|
|
|
|
// Dummy types for xcb values shared in view interface (not used in wayland mode)
|
|
// This header exists so that rofi can be built without xcb headers present
|
|
|
|
typedef int xcb_configure_notify_event_t;
|
|
typedef int xcb_window_t;
|
|
typedef int xcb_timestamp_t;
|
|
|
|
#define XCB_WINDOW_NONE 0
|
|
|
|
#endif
|