diff options
author | Andreas Schneider <asn@samba.org> | 2011-04-14 11:04:15 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-05-10 19:13:23 +0200 |
commit | 25e798e641b2e7acb7ba3794e838fe807e6c0d22 (patch) | |
tree | f6b80ee4b65f56ec59706c4eeb6ce05f2f143c7a /lib/smbconf | |
parent | 7a57ccd2c5d64680bf6386d8fa0c1443819a6f42 (diff) | |
download | samba-25e798e641b2e7acb7ba3794e838fe807e6c0d22.tar.gz samba-25e798e641b2e7acb7ba3794e838fe807e6c0d22.tar.bz2 samba-25e798e641b2e7acb7ba3794e838fe807e6c0d22.zip |
libsmbconf: Document smbconf_is_writeable().
Signed-off-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'lib/smbconf')
-rw-r--r-- | lib/smbconf/smbconf.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/smbconf/smbconf.h b/lib/smbconf/smbconf.h index 8e3b40b7a1..5db8858d64 100644 --- a/lib/smbconf/smbconf.h +++ b/lib/smbconf/smbconf.h @@ -83,7 +83,15 @@ const char *sbcErrorString(sbcErr error); */ bool smbconf_backend_requires_messaging(struct smbconf_ctx *ctx); +/** + * @brief Tell whether the source is writeable. + * + * @param[in] ctx The smbconf context to check. + * + * @return True if it is writeable, false if not. + */ bool smbconf_is_writeable(struct smbconf_ctx *ctx); + void smbconf_shutdown(struct smbconf_ctx *ctx); bool smbconf_changed(struct smbconf_ctx *ctx, struct smbconf_csn *csn, const char *service, const char *param); |