mirror of
https://github.com/MidnightCommander/mc
synced 2025-02-25 03:34:21 +03:00
18 lines
467 B
C
18 lines
467 B
C
![]() |
/* Drag and Drop functionality for the Midnight Commander
|
||
|
*
|
||
|
* Copyright (C) 1998 The Free Software Foundation
|
||
|
*
|
||
|
* Authors: Federico Mena <federico@nuclecu.unam.mx>
|
||
|
* Miguel de Icaza <miguel@nuclecu.unam.mx>
|
||
|
*/
|
||
|
|
||
|
#ifndef GDND_H
|
||
|
#define GDND_H
|
||
|
|
||
|
#include <gtk/gtk.h>
|
||
|
|
||
|
/* Drop the list of URIs in the selection data to the specified directory */
|
||
|
int gdnd_drop_on_directory (GdkDragContext *context, GtkSelectionData *selection_data, char *dirname);
|
||
|
|
||
|
#endif
|