Changeset 200 for trunk/include


Ignore:
Timestamp:
06/03/10 01:08:20 (14 years ago)
Author:
tim
Message:

redesigned python key iterator and test script
updated documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/regfi.h

    r199 r200  
    10671067
    10681068/** Sets the internal subkey index to the first subkey referenced by the current
    1069  *  key and returns that key.
     1069 *  key.
    10701070 *
    10711071 * @param i the iterator
    10721072 *
    1073  * @return A newly allocated key structure for the newly referenced first
    1074  *         subkey, or NULL on failure.  Failure may be due to a lack of any
    1075  *         subkeys or other errors.  Newly allocated keys must be freed with
    1076  *         @ref regfi_free_record.
     1073 * @return True if the current key has any subkeys, false otherwise.
    10771074 *
    10781075 * @ingroup regfiIteratorLayer
     
    10941091
    10951092
    1096 /** Increments the internal subkey index to the next key in the subkey-list and
    1097  *  returns the subkey for that index.
     1093/** Increments the internal subkey index to the next key in the subkey-list.
    10981094 *
    10991095 * @param i the iterator
    11001096 *
    1101  * @return A newly allocated key structure for the next subkey or NULL on
    1102  *         failure.  Newly allocated keys must be freed with
    1103  *         @ref regfi_free_record.
     1097 * @return True if another subkey should exist, false otherwise.
    11041098 *
    11051099 * @ingroup regfiIteratorLayer
     
    11231117
    11241118/** Sets the internal value index to the first value referenced by the current
    1125  *  key and returns that value.
     1119 *  key.
    11261120 *
    11271121 * @param i the iterator
    11281122 *
    1129  * @return  A newly allocated value structure for the newly referenced first
    1130  *          value, or NULL on failure.  Failure may be due to a lack of any
    1131  *          values or other errors.  Newly allocated keys must be freed with
    1132  *          @ref regfi_free_record.
     1123 * @return True if the current key has any values, false otherwise.
    11331124 *
    11341125 * @ingroup regfiIteratorLayer
     
    11501141
    11511142
    1152 /** Increments the internal value index to the next value in the value-list and
    1153  *  returns the value for that index.
     1143/** Increments the internal value index to the next value in the value-list.
    11541144 *
    11551145 * @param i the iterator
    11561146 *
    1157  * @return  A newly allocated key structure for the next value or NULL on
    1158  *          failure.  Newly allocated keys must be freed with
    1159  *          @ref regfi_free_record.
     1147 * @return True if another value should exist, false otherwise.
    11601148 *
    11611149 * @ingroup regfiIteratorLayer
Note: See TracChangeset for help on using the changeset viewer.