From 44fa842ae92ffd9a694b47339b8d19041c874117 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 14 Apr 2011 11:23:56 +0200 Subject: libsmbconf: Document smbconf_share_exists(). Signed-off-by: Michael Adam --- lib/smbconf/smbconf.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'lib/smbconf') diff --git a/lib/smbconf/smbconf.h b/lib/smbconf/smbconf.h index 0a46874fc5..d208af154c 100644 --- a/lib/smbconf/smbconf.h +++ b/lib/smbconf/smbconf.h @@ -172,7 +172,17 @@ sbcErr smbconf_get_share_names(struct smbconf_ctx *ctx, uint32_t *num_shares, char ***share_names); +/** + * @brief Check if a share/service of a given name exists. + * + * @param[in] ctx The smbconf context to use. + * + * @param[in] servicename The service name to check if it exists. + * + * @return True if it exists, false if not. + */ bool smbconf_share_exists(struct smbconf_ctx *ctx, const char *servicename); + sbcErr smbconf_create_share(struct smbconf_ctx *ctx, const char *servicename); sbcErr smbconf_get_share(struct smbconf_ctx *ctx, TALLOC_CTX *mem_ctx, -- cgit