904
|
1 /*
|
|
2 * Geeqie
|
|
3 * Copyright (C) 2008 The Geeqie Team
|
|
4 *
|
|
5 * Author: John Ellis, Vladimir Nadvornik, Laurent Monin
|
|
6 *
|
|
7 * This software is released under the GNU General Public License (GNU GPL).
|
|
8 * Please read the included file COPYING for more information.
|
|
9 * This software comes with no warranty of any kind, use at your own risk!
|
|
10 */
|
|
11
|
|
12 #ifndef URI_UTILS_H
|
|
13 #define URI_UTILS_H
|
|
14
|
|
15 /* dnd data parsers (uris) */
|
|
16
|
|
17 gchar *uri_text_escape(const gchar *text);
|
|
18 void uri_text_decode(gchar *text);
|
|
19
|
|
20 GList *uri_list_from_text(gchar *data, gint files_only);
|
|
21 GList *uri_filelist_from_text(gchar *data, gint files_only);
|
|
22 gchar *uri_text_from_list(GList *list, gint *len, gint plain_text);
|
|
23 gchar *uri_text_from_filelist(GList *list, gint *len, gint plain_text);
|
|
24
|
|
25 #endif /* URI_UTILS_H */
|