r70: Removed some old code. Dragging now quotes the correct MIME type for files.
[rox-filer.git] / ROX-Filer / src / support.h
blob809f6cf0aaa268647e7f20ae73e4bb043833fa15
1 /* vi: set cindent:
2 * $Id$
4 * ROX-Filer, filer for the ROX desktop project
5 * By Thomas Leonard, <tal197@ecs.soton.ac.uk>.
6 */
8 #ifndef _SUPPORT_H
9 #define _SUPPORT_H
11 #include <glib.h>
12 #include <sys/types.h>
14 typedef enum {NONE} SpawnFlags;
16 char *pathdup(char *path);
17 GString *make_path(char *dir, char *leaf);
18 char *our_host_name();
19 int spawn(char **argv);
20 int spawn_full(char **argv, char *dir, SpawnFlags flags);
21 void debug_free_string(void *data);
22 char *user_name(uid_t uid);
23 char *group_name(gid_t gid);
25 #endif /* _SUPPORT_H */