diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-10-24 09:11:12 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-10-24 09:11:12 -0400 |
commit | 2ca502b546f57fe7252dc990e7bfe89e151430a5 (patch) | |
tree | 87f66bd9bf5aa83f2b5f344d07143d4831b8459d /include/wlr/interfaces/wlr_data_source.h | |
parent | 0f7f6b1373438675b5f4d6a6ca0b4b88b472e322 (diff) | |
parent | bbf08f3ef9cf831c6af49060871995eaa0963bca (diff) |
Merge branch 'master' into feature/xwm-rewrite
Diffstat (limited to 'include/wlr/interfaces/wlr_data_source.h')
-rw-r--r-- | include/wlr/interfaces/wlr_data_source.h | 16 |
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 |