Since: 2.16 */
| 118 | |
| 119 | /* Since: 2.16 */ |
| 120 | static inline void |
| 121 | g_hash_table_iter_init(GHashTableIter * iter, GHashTable * hash_table) |
| 122 | { |
| 123 | iter->hash = hash_table; |
| 124 | iter->nth = 0; |
| 125 | iter->lpc = 0; |
| 126 | iter->key = NULL; |
| 127 | iter->value = NULL; |
| 128 | } |
| 129 | |
| 130 | static inline gboolean |
| 131 | g_hash_table_iter_next(GHashTableIter * iter, gpointer * key, gpointer * value) |
no outgoing calls