- added and tested id_payload_t

This commit is contained in:
Jan Hutter
2005-11-29 09:57:22 +00:00
parent a0753941e1
commit db6e764580
13 changed files with 182 additions and 12 deletions
-2
View File
@@ -99,7 +99,6 @@ struct iterator_t {
* with the resetted iterator.
*
* @param this calling object
* @return SUCCESS in any case
*/
void (*reset) (iterator_t *this);
@@ -107,7 +106,6 @@ struct iterator_t {
* @brief Destroys an iterator.
*
* @param this iterator to destroy
* @return SUCCESS in any case
*
*/
void (*destroy) (iterator_t *this);
+1 -1
View File
@@ -159,7 +159,7 @@ struct logger_t {
* @param logger_name name for the logger_t object
* @param log_level or'ed set of log_levels to assign to the new logger_t object
* @param log_pid TRUE if thread id should also be logged
* @param output FILE * if log has to go on a file output, NULL for syslog
* @param output FILE * if log has to go on a file output, NULL for syslog
* @return logger_t object
*
* @ingroup utils