X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fwgt.h;h=6d39da8e076f459f50df91df8d5e8b68f80fca6f;hb=3a6e947bef1b2942e24d2fdee1a76dbf3305b508;hp=f159a3b866127b771416c730daf019551aebeefa;hpb=f3d64b7c741677cd28e2a11deed67196cd02b46a;p=src%2Fapp-framework-main.git diff --git a/src/wgt.h b/src/wgt.h index f159a3b..6d39da8 100644 --- a/src/wgt.h +++ b/src/wgt.h @@ -1,5 +1,7 @@ /* - Copyright 2015 IoT.bzh + Copyright 2015, 2016, 2017 IoT.bzh + + author: José Bollo Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -16,22 +18,28 @@ struct wgt; +/* creation and reference */ extern struct wgt *wgt_create(); 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 fd, 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); +extern unsigned 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);