aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/interfaces/wlr_data_source.h
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-10-11 15:48:40 -0400
committerTony Crisci <tony@dubstepdish.com>2017-10-15 05:59:52 -0400
commit6a7560fae05147ac5a1ac0dd3474670f1bd6c871 (patch)
treeb3cc7127ba2a6c8c526bf5d9267b71d70da239b3 /include/wlr/interfaces/wlr_data_source.h
parent2b09105bde84ef52ed8f683782dbf2091dcccb08 (diff)
wlr-data-device interface
Diffstat (limited to 'include/wlr/interfaces/wlr_data_source.h')
-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