comparison libpurple/protocols/jabber/xdata.h @ 26481:5767b7698c73

Further standardize the sentinel style (did someone say leading _s are theoretically a reserved namespace?)
author Paul Aurich <paul@darkrain42.org>
date Sun, 05 Apr 2009 19:21:22 +0000
parents 481749fc0b6b
children c585572e80dd
comparison
equal deleted inserted replaced
26480:0c8d41f5caa0 26481:5767b7698c73
17 * 17 *
18 * You should have received a copy of the GNU General Public License 18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software 19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
21 */ 21 */
22 #ifndef _PURPLE_JABBER_XDATA_H_ 22 #ifndef PURPLE_JABBER_XDATA_H_
23 #define _PURPLE_JABBER_XDATA_H_ 23 #define PURPLE_JABBER_XDATA_H_
24 24
25 #include "jabber.h" 25 #include "jabber.h"
26 #include "xmlnode.h" 26 #include "xmlnode.h"
27 27
28 typedef struct _JabberXDataAction { 28 typedef struct _JabberXDataAction {
33 typedef void (*jabber_x_data_cb)(JabberStream *js, xmlnode *result, gpointer user_data); 33 typedef void (*jabber_x_data_cb)(JabberStream *js, xmlnode *result, gpointer user_data);
34 typedef void (*jabber_x_data_action_cb)(JabberStream *js, xmlnode *result, const char *actionhandle, gpointer user_data); 34 typedef void (*jabber_x_data_action_cb)(JabberStream *js, xmlnode *result, const char *actionhandle, gpointer user_data);
35 void *jabber_x_data_request(JabberStream *js, xmlnode *packet, jabber_x_data_cb cb, gpointer user_data); 35 void *jabber_x_data_request(JabberStream *js, xmlnode *packet, jabber_x_data_cb cb, gpointer user_data);
36 void *jabber_x_data_request_with_actions(JabberStream *js, xmlnode *packet, GList *actions, int defaultaction, jabber_x_data_action_cb cb, gpointer user_data); 36 void *jabber_x_data_request_with_actions(JabberStream *js, xmlnode *packet, GList *actions, int defaultaction, jabber_x_data_action_cb cb, gpointer user_data);
37 37
38 #endif /* _PURPLE_JABBER_XDATA_H_ */ 38 #endif /* PURPLE_JABBER_XDATA_H_ */