X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fwgt.h;h=301a8693a96da1aa16cfa11a05148e51ec3dfc06;hb=2a319cf90daa6e3b01e8139923f7073e1c9bcf28;hp=bd8c428c53fa9d69a77a4f3488c7a2c83f3c2b28;hpb=c0fc18e47e49dd4e3cc2f09452a19297dad63f9c;p=src%2Fapp-framework-main.git diff --git a/src/wgt.h b/src/wgt.h index bd8c428..301a869 100644 --- a/src/wgt.h +++ b/src/wgt.h @@ -1,5 +1,5 @@ /* - Copyright 2015 IoT.bzh + Copyright (C) 2015-2019 IoT.bzh author: José Bollo @@ -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); +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);