libwaystub/src/waystub.c

33 lines
682 B
C
Raw Normal View History

2022-01-26 22:59:38 +00:00
#include <gdk/gdk.h>
void * gdk_wayland_device_get_wl_pointer(GdkDevice *device) {
return NULL;
};
void * gdk_wayland_device_get_wl_keyboard(GdkDevice *device) {
return NULL;
};
void * gdk_wayland_device_get_wl_seat(GdkDevice *device) {
return NULL;
};
void * gdk_wayland_display_get_wl_compositor(GdkDisplay *display) {
return NULL;
};
void * gdk_wayland_display_get_wl_display(GdkDisplay *display) {
return NULL;
};
void * gdk_wayland_display_get_xdg_shell(GdkDisplay *display) {
return NULL;
};
void * gdk_wayland_window_get_wl_surface(GdkWindow *window) {
return NULL;
};
void gdk_wayland_window_set_use_custom_surface(GdkWindow *window) {
}