From: Michael Adam Date: Fri, 21 Mar 2008 15:45:25 +0000 (+0100) Subject: libsmbconf: add structuring comments to the prototypes in the public header. X-Git-Tag: samba-3.3.0pre1~3168 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4f816df27670c3b6aabea9f26ef2d26f3e882e78;p=thirdparty%2Fsamba.git libsmbconf: add structuring comments to the prototypes in the public header. Michael --- diff --git a/source/lib/smbconf/smbconf.h b/source/lib/smbconf/smbconf.h index 28be7292245..35da36795ed 100644 --- a/source/lib/smbconf/smbconf.h +++ b/source/lib/smbconf/smbconf.h @@ -31,7 +31,15 @@ struct smbconf_csn { * WARNING: this api is still subject to change. */ +/* + * initialization functions for the available modules + * (a dispatcher might be added in the future) + */ WERROR smbconf_init_reg(TALLOC_CTX *mem_ctx, struct smbconf_ctx **conf_ctx); + +/* + * the smbconf API functions + */ void smbconf_shutdown(struct smbconf_ctx *ctx); bool smbconf_changed(struct smbconf_ctx *ctx, struct smbconf_csn *csn, const char *service, const char *param);