# HG changeset patch
# User Olaf Wintermann <olaf.wintermann@gmail.com>
# Date 1717939867 -7200
# Node ID bb0b8927f5c0a4274deb200c3718014f2c150335
# Parent  3a77b9048664715572049a4889166cc6ce515cd6
add dnd selection functions (unimplemented) (GTK)

diff -r 3a77b9048664 -r bb0b8927f5c0 ui/gtk/dnd.c
--- a/ui/gtk/dnd.c	Sun Jun 09 15:26:20 2024 +0200
+++ b/ui/gtk/dnd.c	Sun Jun 09 15:31:07 2024 +0200
@@ -101,3 +101,19 @@
     return NULL;
 }
 */
+
+void ui_selection_settext(UiDnD *sel, char *str, int len) {
+    
+}
+
+void ui_selection_seturis(UiDnD *sel, char **uris, int nelm) {
+    
+}
+
+char* ui_selection_gettext(UiDnD *sel) {
+    return NULL;
+}
+
+UiFileList ui_selection_geturis(UiDnD *sel) {
+    return (UiFileList){NULL,0};
+}