add dnd selection functions (unimplemented) (GTK) newapi

Sun, 09 Jun 2024 15:31:07 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Sun, 09 Jun 2024 15:31:07 +0200
branch
newapi
changeset 283
bb0b8927f5c0
parent 282
3a77b9048664
child 284
f93c368518c0

add dnd selection functions (unimplemented) (GTK)

ui/gtk/dnd.c file | annotate | diff | comparison | revisions
--- 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};
+}

mercurial