Fill up the rest of the v1 data_source listener struct
This commit is contained in:
parent
6a3d6191bd
commit
c0c8e1ce5e
4
glfw/wl_window.c
vendored
4
glfw/wl_window.c
vendored
@ -1518,9 +1518,13 @@ static void data_source_canceled(void *data, struct wl_data_source *wl_data_sour
|
|||||||
wl_data_source_destroy(wl_data_source);
|
wl_data_source_destroy(wl_data_source);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void data_source_target(void *data, struct wl_data_source *wl_data_source, const char* mime) {
|
||||||
|
}
|
||||||
|
|
||||||
const static struct wl_data_source_listener data_source_listener = {
|
const static struct wl_data_source_listener data_source_listener = {
|
||||||
.send = _glfwSendClipboardText,
|
.send = _glfwSendClipboardText,
|
||||||
.cancelled = data_source_canceled,
|
.cancelled = data_source_canceled,
|
||||||
|
.target = data_source_target,
|
||||||
};
|
};
|
||||||
|
|
||||||
static void prune_unclaimed_data_offers() {
|
static void prune_unclaimed_data_offers() {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user