4 #include <glib/gerror.h>
8 typedef struct _GDir GDir;
10 GDir *g_dir_open (const gchar *path, guint flags, GError **error);
12 gchar *g_dir_read_name (GDir *dir);
13 void g_dir_rewind (GDir *dir);
14 gboolean g_dir_close (GDir *dir);
18 #endif /* __G_DIR_H__ */