diff options
author | Michael Adam <obnox@samba.org> | 2008-03-21 16:45:25 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-03-21 16:45:25 +0100 |
commit | 40ea88db5e9e5dd8fd6a924bfcd1afefa538404d (patch) | |
tree | 552e1edd2f45d82b421d16d73a9a3d537acb007a | |
parent | e62cae6638417323461b89dbde8635890f90e37e (diff) | |
download | samba-40ea88db5e9e5dd8fd6a924bfcd1afefa538404d.tar.gz samba-40ea88db5e9e5dd8fd6a924bfcd1afefa538404d.tar.bz2 samba-40ea88db5e9e5dd8fd6a924bfcd1afefa538404d.zip |
libsmbconf: add structuring comments to the prototypes in the public header.
Michael
(This used to be commit 4f816df27670c3b6aabea9f26ef2d26f3e882e78)
-rw-r--r-- | source3/lib/smbconf/smbconf.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/lib/smbconf/smbconf.h b/source3/lib/smbconf/smbconf.h index 28be729224..35da36795e 100644 --- a/source3/lib/smbconf/smbconf.h +++ b/source3/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); |