#2107 Description of the parse flags use is missing in header file
Closed: Fixed Opened by dpal.

see ding-libs/ini/ini_configobj.h

/**
 * @brief Parse the file and populate a configuration object
 *
 * Function parses the file. It is assumed that
 * the configuration object was just created.
 * Using a non empty configuration object in
 * a parsing operation would fail with EINVAL.
 *
 * @param[in]  file_ctx         Configuration file object.
 * @param[in]  error_level      Flags that control actions
 *                              in case of parsing error.
 * @param[in]  collision_flags  Flags that control handling
 *                              of the duplicate sections or keys.
             <=== Parse flags are missing
 * @param[out] ini_config       Configuration object.
 *
 * @return 0 - Success.
 * @return EINVAL - Invalid parameter.
 * @return ENOMEM - No memory.
 */
int ini_config_parse(struct ini_cfgfile *file_ctx,
                     int error_level,
                     uint32_t collision_flags,
                     uint32_t parse_flags,
                     struct ini_cfgobj *ini_config);

Fields changed

milestone: NEEDS_TRIAGE => Tools 1.1

Fields changed

milestone: Tools 1.1 => ding-libs - Oct 2013

Fields changed

owner: somebody => dpal
patch: 0 => 1

  • master: 4bef456bfe1447c8c493a16719a65ff602ce6d2b

Fields changed

resolution: => fixed
status: new => closed

Metadata Update from @dpal:
- Issue assigned to dpal
- Issue set to the milestone: ding-libs - Oct 2013

Metadata