Changeset 988 for vendor/current/lib/smbconf/smbconf.h
- Timestamp:
- Nov 24, 2016, 1:14:11 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/lib/smbconf/smbconf.h
r740 r988 206 206 207 207 /** 208 * @brief create and set the definition for a new service. 209 * 210 * @param[in] ctx The smbconf context to use. 211 * 212 * @param[in] service The definition for the added service. 213 * 214 * @return SBC_ERR_OK on success, a corresponding sbcErr if an 215 * error occured. 216 */ 217 sbcErr smbconf_create_set_share(struct smbconf_ctx *ctx, 218 struct smbconf_service *service); 219 220 /** 208 221 * @brief Get a definition of a share (service) from configuration. 209 222 * … … 448 461 * @brief Start a transaction on the configuration backend. 449 462 * 450 * This is to speed up writes to the registry based backend. 463 * Transactions are exposed in order to make it possible 464 * to create atomic compound writing commands. 451 465 * 452 466 * @param[in] ctx The smbconf context to start the transaction. … … 460 474 * @brief Commit a transaction on the configuration backend. 461 475 * 462 * This is to speed up writes to the registry based backend. 476 * Transactions are exposed in order to make it possible 477 * to create atomic compound writing commands. 463 478 * 464 479 * @param[in] ctx The smbconf context to commit the transaction. … … 474 489 * @brief Cancel a transaction on the configuration backend. 475 490 * 491 * Transactions are exposed in order to make it possible 492 * to create atomic compound writing commands. 493 * 476 494 * @param[in] ctx The smbconf context to cancel the transaction. 477 495 *
Note:
See TracChangeset
for help on using the changeset viewer.