Remove commented out code.
[geeqie.git] / src / uri_utils.h
1 /*
2  * Geeqie
3  * Copyright (C) 2008 - 2012 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 GList *uri_filelist_from_uris(gchar **uris);
16 gchar **uris_from_pathlist(GList *list);
17 gchar **uris_from_filelist(GList *list);
18 GList *uri_pathlist_from_uris(gchar **uris);
19 gboolean uri_selection_data_set_uris_from_filelist(GtkSelectionData *selection_data, GList *list);
20 GList *uri_filelist_from_gtk_selection_data(GtkSelectionData *selection_data);
21
22 #endif /* URI_UTILS_H */
23 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */