blob: ee7a692fbdab7dcb4085fa5902ff61ca75112abd (
plain) (
tree)
|
|
#include <stdlib.h>
#include <glib.h>
#include <libempathy/empathy-contact-factory.h>
#include <libmissioncontrol/mc-account.h>
int
main (int argc, char **argv)
{
EmpathyContactFactory *factory;
McAccount *account;
EmpathyContact *contact;
g_type_init ();
factory = empathy_contact_factory_new ();
account = mc_account_lookup ("jabber4");
contact = empathy_contact_factory_get_from_id (factory, account,
"testman@jabber.belnet.be");
g_print ("Contact handle=%d\n", empathy_contact_get_handle (contact));
empathy_contact_run_until_ready (contact,
EMPATHY_CONTACT_READY_HANDLE |
EMPATHY_CONTACT_READY_NAME,
NULL);
g_print ("Contact ready: handle=%d alias=%s\n",
empathy_contact_get_handle (contact),
empathy_contact_get_name (contact));
g_object_unref (factory);
g_object_unref (account);
g_object_unref (contact);
return EXIT_SUCCESS;
}
|