comparison libpurple/ft.h @ 32426:5b5fd57ff3ae

Rename field for consistency.
author andrew.victor@mxit.com
date Fri, 26 Aug 2011 19:33:50 +0000
parents d61170e263b4
children ff051a32e1e8
comparison
equal deleted inserted replaced
32425:dc4de0b08405 32426:5b5fd57ff3ae
183 } ops; 183 } ops;
184 184
185 PurpleXferUiOps *ui_ops; /**< UI-specific operations. */ 185 PurpleXferUiOps *ui_ops; /**< UI-specific operations. */
186 void *ui_data; /**< UI-specific data. */ 186 void *ui_data; /**< UI-specific data. */
187 187
188 void *data; /**< prpl-specific data. */ 188 void *proto_data; /**< prpl-specific data. */
189 }; 189 };
190 190
191 #ifdef __cplusplus 191 #ifdef __cplusplus
192 extern "C" { 192 extern "C" {
193 #endif 193 #endif
743 * @param xfer The file transfer. 743 * @param xfer The file transfer.
744 * @param protol_data The protocol data to set for the file transfer. 744 * @param protol_data The protocol data to set for the file transfer.
745 * 745 *
746 * @since 3.0.0 746 * @since 3.0.0
747 */ 747 */
748 void purple_xfer_set_protocol_data(PurpleXfer *xfer, void *proto_data); 748 void purple_xfer_set_protocol_data(PurpleXfer *xfer, gpointer proto_data);
749 749
750 /** 750 /**
751 * Gets the protocol data for a file transfer. 751 * Gets the protocol data for a file transfer.
752 * 752 *
753 * @param xfer The file transfer. 753 * @param xfer The file transfer.
754 * 754 *
755 * @return The protocol data for the file transfer. 755 * @return The protocol data for the file transfer.
756 * 756 *
757 * @since 3.0.0 757 * @since 3.0.0
758 */ 758 */
759 void *purple_xfer_get_protocol_data(PurpleXfer *xfer); 759 gpointer purple_xfer_get_protocol_data(PurpleXfer *xfer);
760 760
761 /*@}*/ 761 /*@}*/
762 762
763 /**************************************************************************/ 763 /**************************************************************************/
764 /** @name UI Registration Functions */ 764 /** @name UI Registration Functions */