Changeset 200 for trunk/include
- Timestamp:
- 06/03/10 01:08:20 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/regfi.h
r199 r200 1067 1067 1068 1068 /** Sets the internal subkey index to the first subkey referenced by the current 1069 * key and returns that key.1069 * key. 1070 1070 * 1071 1071 * @param i the iterator 1072 1072 * 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. 1077 1074 * 1078 1075 * @ingroup regfiIteratorLayer … … 1094 1091 1095 1092 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. 1098 1094 * 1099 1095 * @param i the iterator 1100 1096 * 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. 1104 1098 * 1105 1099 * @ingroup regfiIteratorLayer … … 1123 1117 1124 1118 /** Sets the internal value index to the first value referenced by the current 1125 * key and returns that value.1119 * key. 1126 1120 * 1127 1121 * @param i the iterator 1128 1122 * 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. 1133 1124 * 1134 1125 * @ingroup regfiIteratorLayer … … 1150 1141 1151 1142 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. 1154 1144 * 1155 1145 * @param i the iterator 1156 1146 * 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. 1160 1148 * 1161 1149 * @ingroup regfiIteratorLayer
Note: See TracChangeset
for help on using the changeset viewer.