00001 /* $Id$ */ 00002 00003 /* 00004 * (C) Copyright 2003 Wojtek Kaniewski <wojtekka@irc.pl 00005 * 2004 Piotr Kupisiewicz <deletek@ekg2.org> 00006 * 00007 * This program is free software; you can redistribute it and/or modify 00008 * it under the terms of the GNU General Public License Version 2 as 00009 * published by the Free Software Foundation. 00010 * 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License 00017 * along with this program; if not, write to the Free Software 00018 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00019 */ 00020 00021 #ifndef __EKG_GG_PUBDIR_H 00022 #define __EKG_GG_PUBDIR_H 00023 00024 #include <ekg/commands.h> 00025 00026 extern list_t gg_registers; 00027 extern list_t gg_unregisters; 00028 extern list_t gg_reminds; 00029 00030 extern int gg_register_done; 00031 extern char *gg_register_password; 00032 extern char *gg_register_email; 00033 00034 COMMAND(gg_command_register); 00035 COMMAND(gg_command_unregister); 00036 COMMAND(gg_command_passwd); 00037 COMMAND(gg_command_remind); 00038 COMMAND(gg_command_list); 00039 00040 int gg_userlist_set(session_t *session, const char *contacts); 00041 00042 #endif 00043 00044 00045 /* 00046 * Local Variables: 00047 * mode: c 00048 * c-file-style: "k&r" 00049 * c-basic-offset: 8 00050 * indent-tabs-mode: t 00051 * End: 00052 */