| 288 size_t new_index |
288 size_t new_index |
| 289 |
289 |
| 290 void |
290 void |
| 291 purple_accounts_get_all() |
291 purple_accounts_get_all() |
| 292 PREINIT: |
292 PREINIT: |
| 293 GList *l; |
293 const GList *l; |
| 294 PPCODE: |
294 PPCODE: |
| 295 for (l = purple_accounts_get_all(); l != NULL; l = l->next) { |
295 for (l = purple_accounts_get_all(); l != NULL; l = l->next) { |
| 296 XPUSHs(sv_2mortal(purple_perl_bless_object(l->data, "Purple::Account"))); |
296 XPUSHs(sv_2mortal(purple_perl_bless_object(l->data, "Purple::Account"))); |
| 297 } |
297 } |
| 298 |
298 |