summaryrefslogtreecommitdiffstats
path: root/input/event.h
diff options
context:
space:
mode:
Diffstat (limited to 'input/event.h')
-rw-r--r--input/event.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/input/event.h b/input/event.h
index 38aae3ceb2..820932d9da 100644
--- a/input/event.h
+++ b/input/event.h
@@ -15,7 +15,14 @@
* with mpv. If not, see <http://www.gnu.org/licenses/>.
*/
+#include "bstr/bstr.h"
+
struct input_ctx;
// Enqueue files for playback after drag and drop
void mp_event_drop_files(struct input_ctx *ictx, int num_files, char **files);
+
+// Drop data in a specific format (identified by the mimetype).
+// Returns <0 on error, ==0 if data was ok but empty, >0 on success.
+int mp_event_drop_mime_data(struct input_ctx *ictx, const char *mime_type,
+ bstr data);