Details
RFilter
typedef struct {
GObject parent;
RFilterPrivate* private;
} RFilter;
RInfos
typedef struct {
glong id; // card id
gchar *label; // card label
gchar *first; // contact's first name
gchar *last; // contact's last name
gchar *prof; // contact's profession
gchar *city;
gchar *country;
gchar *assignment; // contact's assignmet
gchar *web; // contact's home page
gchar *email; // contact's email
gchar *irc;
gchar *telephone; // contact's telephone number
} RInfos;
r_infos_get_id()
#define r_infos_get_id(x) (x->id)
r_infos_get_label()
#define r_infos_get_label(x) (x->label)
r_infos_get_first()
#define r_infos_get_first(x) (x->first)
r_infos_get_last()
#define r_infos_get_last(x) (x->last)
r_infos_get_profession()
#define r_infos_get_profession(x) (x->prof)
r_infos_get_city()
#define r_infos_get_city(x) (x->city)
r_infos_get_country()
#define r_infos_get_country(x) (x->country)
r_infos_get_assignment()
#define r_infos_get_assignment(x) (x->assignment)
r_infos_get_web()
#define r_infos_get_web(x) (x->web)
r_infos_get_email()
#define r_infos_get_email(x) (x->email)
r_infos_get_irc()
#define r_infos_get_irc(x) (x->irc)
r_infos_get_telephone()
#define r_infos_get_telephone(x) (x->telephone)