aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/interfaces
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-10-24 08:22:13 -0400
committerGitHub <noreply@github.com>2017-10-24 08:22:13 -0400
commitbbf08f3ef9cf831c6af49060871995eaa0963bca (patch)
tree005f9540a0d68f827eb0024a1fb4bf53f48a4f20 /include/wlr/interfaces
parent93042e844be026e05a3120385af530c406bb695e (diff)
parent1dbe31493708790f6fafb4c9da8d24cbb3fa07b9 (diff)
Merge pull request #262 from acrisci/feature/data-device-selection
wlr-data-device
Diffstat (limited to 'include/wlr/interfaces')
-rw-r--r--include/wlr/interfaces/wlr_data_source.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/include/wlr/interfaces/wlr_data_source.h b/include/wlr/interfaces/wlr_data_source.h
deleted file mode 100644
index 821bdea0..00000000
--- a/include/wlr/interfaces/wlr_data_source.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef WLR_INTERFACES_WLR_DATA_SOURCE_H
-#define WLR_INTERFACES_WLR_DATA_SOURCE_H
-
-#include <wlr/types/wlr_data_source.h>
-
-struct wlr_data_source_impl {
- void (*send)(struct wlr_data_source *data_source, const char *type, int fd);
- void (*accepted)(struct wlr_data_source *data_source, const char *type);
- void (*cancelled)(struct wlr_data_source *data_source);
-};
-
-bool wlr_data_source_init(struct wlr_data_source *source,
- struct wlr_data_source_impl *impl);
-void wlr_data_source_finish(struct wlr_data_source *source);
-
-#endif