Sat, 01 Dec 2007 14:53:09 +0000
Pluck the hidden conversation changes to ipp.2.3.1. I think this needs
careful testing.
applied changes from 806d367a737b47889afc6bc1a600745b224be73b
through af97865fc7bbf79c768ddcb673da8560cf481719
applied changes from e3e7a13ac8add4cadd65d72a3513d202baecf649
through c9f27c16e20ad158b7431974dfce2e50a300492d
applied changes from 43dd2f1b2942cac448da6cccc118014c90cbf141
through 3fe64d635336a6d7f6e520f4b2e041c3316c465d
/** * @file gtkconn.h GTK+ Connection API */ /* pidgin * * Pidgin is the legal property of its developers, whose names are too numerous * to list here. Please refer to the COPYRIGHT file distributed with this * source distribution. * * 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 * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 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 02111-1301 USA */ #ifndef _PIDGINCONN_H_ #define _PIDGINCONN_H_ /**************************************************************************/ /** @name GTK+ Connection API */ /**************************************************************************/ /*@{*/ /** * Gets GTK+ Connection UI ops * * @return UI operations struct */ PurpleConnectionUiOps *pidgin_connections_get_ui_ops(void); /*@}*/ /** * Returns the GTK+ connection handle. * * @return The handle to the GTK+ connection system. */ void *pidgin_connection_get_handle(void); /** * Initializes the GTK+ connection system. */ void pidgin_connection_init(void); /** * Uninitializes the GTK+ connection system. */ void pidgin_connection_uninit(void); #endif /* _PIDGINCONN_H_ */