1 #ifndef __DND_DATA_H 2 #define __DND_DATA_H 3 4 #include <gtk/gtk.h> 5 6 #ifdef __cplusplus 7 extern "C" { 8 #endif 9 10 #define DND_DOWNLOAD_DATA_TARGET "URLGET_DOWNLOAD_DATA" 11 #define DND_DOWNLOAD_DATA_FLAG GTK_TARGET_SAME_APP 12 #define DND_DOWNLOAD_DATA_INFO 0 13 14 #define DND_URL_TARGET "text/plain" 15 #define DND_URL_FLAG 0 16 #define DND_URL_INFO 1 17 18 #ifdef __cplusplus 19 } 20 #endif 21 22 #endif // End of __DND_DATA_H 23