/* * Return link list of persons. */ GList *syldap_get_list_person( SyldapServer *ldapServer ) { g_return_val_if_fail( ldapServer != NULL, NULL ); return addrcache_get_list_person( ldapServer->addressCache ); }
/* * Return link list of persons. */ GList *jpilot_get_list_person( JPilotFile *pilotFile ) { g_return_val_if_fail( pilotFile != NULL, NULL ); return addrcache_get_list_person( pilotFile->addressCache ); }
/* * Return link list of persons. */ GList *vcard_get_list_person( VCardFile *cardFile ) { g_return_val_if_fail( cardFile != NULL, NULL ); return addrcache_get_list_person( cardFile->addressCache ); }