Changeset 223 for branches/samba-3.3.x/source/lib/smbconf/smbconf.h
- Timestamp:
- May 24, 2009, 7:51:24 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/lib/smbconf/smbconf.h
r206 r223 35 35 }; 36 36 37 38 /**39 * intialization dispatcher function.40 * takes source string in the form of "backend:path"41 */42 WERROR smbconf_init(TALLOC_CTX *mem_ctx, struct smbconf_ctx **conf_ctx,43 const char *source);44 45 /**46 * initialization functions for the available modules47 */48 49 WERROR smbconf_init_reg(TALLOC_CTX *mem_ctx, struct smbconf_ctx **conf_ctx,50 const char *path);51 52 WERROR smbconf_init_txt(TALLOC_CTX *mem_ctx,53 struct smbconf_ctx **conf_ctx,54 const char *path);55 56 37 /* 57 38 * the smbconf API functions 58 39 */ 40 bool smbconf_backend_requires_messaging(struct smbconf_ctx *ctx); 41 bool smbconf_is_writeable(struct smbconf_ctx *ctx); 59 42 void smbconf_shutdown(struct smbconf_ctx *ctx); 60 43 bool smbconf_changed(struct smbconf_ctx *ctx, struct smbconf_csn *csn, … … 112 95 WERROR smbconf_delete_global_includes(struct smbconf_ctx *ctx); 113 96 97 WERROR smbconf_transaction_start(struct smbconf_ctx *ctx); 98 WERROR smbconf_transaction_commit(struct smbconf_ctx *ctx); 99 WERROR smbconf_transaction_cancel(struct smbconf_ctx *ctx); 100 114 101 #endif /* _LIBSMBCONF_H_ */
Note:
See TracChangeset
for help on using the changeset viewer.