Add a couple of languages that have LANG_* codes in newest headers, just
[glib.git] / glib / gdir.h
blobff3358d4c9c5dfbe98e96054b030c3a9d39dc4df
1 #ifndef __G_DIR_H__
2 #define __G_DIR_H__
4 #include <glib/gerror.h>
6 G_BEGIN_DECLS
8 typedef struct _GDir GDir;
10 GDir * g_dir_open (const gchar *path,
11 guint flags,
12 GError **error);
13 G_CONST_RETURN gchar *g_dir_read_name (GDir *dir);
14 void g_dir_rewind (GDir *dir);
15 void g_dir_close (GDir *dir);
17 G_END_DECLS
19 #endif /* __G_DIR_H__ */