summaryrefslogtreecommitdiffstats
path: root/src/wgt.h
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2016-03-15 10:13:13 +0100
committerJosé Bollo <jose.bollo@iot.bzh>2016-03-15 10:13:13 +0100
commit9c6132dd0bfaca8edae84906ad70a6205b5ba42f (patch)
tree5d25a61df2850b079e7e9f546531c4e651e957ef /src/wgt.h
parent6ed448e9374ae0b3e2cb78eda2a892151b6ddcfa (diff)
wgt: add comments
Change-Id: I60a592aff0e11b8392a074348688c998e3117265 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/wgt.h')
-rw-r--r--src/wgt.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/wgt.h b/src/wgt.h
index bd8c428..82ad4db 100644
--- a/src/wgt.h
+++ b/src/wgt.h
@@ -18,24 +18,28 @@
struct wgt;
+/* creation and reference */
extern struct wgt *wgt_create();
-extern struct wgt *wgt_createat(int dirfd, const char *pathname);
-
extern void wgt_addref(struct wgt *wgt);
extern void wgt_unref(struct wgt *wgt);
+/* connection and disconnection */
+extern struct wgt *wgt_createat(int dirfd, const char *pathname);
extern int wgt_connect(struct wgt *wgt, const char *pathname);
extern int wgt_connectat(struct wgt *wgt, int dirfd, const char *pathname);
extern void wgt_disconnect(struct wgt *wgt);
extern int wgt_is_connected(struct wgt *wgt);
-extern int wgt_has(struct wgt *wgt, const char *filename);
-extern int wgt_open_read(struct wgt *wgt, const char *filename);
-
+/* management of locales */
extern void wgt_locales_reset(struct wgt *wgt);
extern int wgt_locales_add(struct wgt *wgt, const char *locstr);
extern int wgt_locales_score(struct wgt *wgt, const char *lang);
+/* direct access to files */
+extern int wgt_has(struct wgt *wgt, const char *filename);
+extern int wgt_open_read(struct wgt *wgt, const char *filename);
+
+/* localised access to files */
extern char *wgt_locales_locate(struct wgt *wgt, const char *filename);
extern int wgt_locales_open_read(struct wgt *wgt, const char *filename);