diff options
author | Andreas Schneider <asn@samba.org> | 2011-04-14 11:49:24 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-05-10 19:13:25 +0200 |
commit | 3ace1716a0e166642ca511efe5e4ff27214aee62 (patch) | |
tree | aeee056424509928330dad895d0f0c1cd4a1eb2b /lib/smbconf | |
parent | a606d5219eab7a063758dea80359ce3cbc7a60f0 (diff) | |
download | samba-3ace1716a0e166642ca511efe5e4ff27214aee62.tar.gz samba-3ace1716a0e166642ca511efe5e4ff27214aee62.tar.bz2 samba-3ace1716a0e166642ca511efe5e4ff27214aee62.zip |
libsmbconf: Document smbconf_delete_includes().
Signed-off-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'lib/smbconf')
-rw-r--r-- | lib/smbconf/smbconf.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/smbconf/smbconf.h b/lib/smbconf/smbconf.h index 10c7a78e32..52fe32a4e3 100644 --- a/lib/smbconf/smbconf.h +++ b/lib/smbconf/smbconf.h @@ -412,7 +412,19 @@ sbcErr smbconf_set_includes(struct smbconf_ctx *ctx, sbcErr smbconf_set_global_includes(struct smbconf_ctx *ctx, uint32_t num_includes, const char **includes); + +/** + * @brief Delete include parameter on the given service. + * + * @param[in] ctx The smbconf context to use. + * + * @param[in] service The name of the service to delete the includes from. + * + * @return SBC_ERR_OK on success, a corresponding sbcErr if an + * error occured. + */ sbcErr smbconf_delete_includes(struct smbconf_ctx *ctx, const char *service); + sbcErr smbconf_delete_global_includes(struct smbconf_ctx *ctx); sbcErr smbconf_transaction_start(struct smbconf_ctx *ctx); |