Sun, 09 Jun 2024 15:31:07 +0200
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}; +}