X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=blobdiff_plain;f=src%2Faddrharvest.h;h=b7d96f60f73f8a55bf3bf490eea4afe12e9b4fe9;hp=655802ada8dcd2115eacd52484ee3c04f45a662b;hb=11b84add9a013b480476c2a307704becefa83ab6;hpb=fad68bbfecbb6767cfce0b71ae0e6f6cfa18cb38 diff --git a/src/addrharvest.h b/src/addrharvest.h index 655802ada..b7d96f60f 100644 --- a/src/addrharvest.h +++ b/src/addrharvest.h @@ -1,10 +1,10 @@ /* * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client - * Copyright (C) 2002-2007 Match Grun and the Claws Mail team + * Copyright (C) 2002-2011 Match Grun and the Claws Mail team * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, @@ -13,8 +13,8 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * along with this program. If not, see . + * */ /* @@ -47,6 +47,14 @@ struct _AddressHarvester { gboolean folderRecurse; }; +#ifdef USE_NEW_ADDRBOOK +typedef struct { + gchar* first_name; + gchar* last_name; + gchar* email; +} ContactEntry; +#endif + /* Function prototypes */ AddressHarvester *addrharvest_create ( void ); void addrharvest_free ( AddressHarvester *harvester ); @@ -61,8 +69,6 @@ void addrharvest_set_recurse ( AddressHarvester* harvester, const gboolean value ); gint addrharvest_get_count ( AddressHarvester* harvester, const gchar *name ); -void addrharvest_print ( AddressHarvester *harvester, - FILE *stream ); gint addrharvest_harvest ( AddressHarvester *harvester, AddressCache *cache, GList *msgList );