comparison libpurple/protocols/zephyr/zephyr.h @ 17471:8f6396cf59fb

Another change from o_sukhodolsky: Fix the Zephyr z_message type to avoid errors about arithmatic on a void pointer. This type matches that from my system-wide zephyr header on Ubuntu. References #1344
author Richard Laager <rlaager@wiktel.com>
date Wed, 30 May 2007 06:20:47 +0000
parents 5fe8042783c1
children c38d72677c8a
comparison
equal deleted inserted replaced
17470:d4464c354346 17471:8f6396cf59fb
107 char *z_multinotice; 107 char *z_multinotice;
108 ZUnique_Id_t z_multiuid; 108 ZUnique_Id_t z_multiuid;
109 ZChecksum_t z_checksum; 109 ZChecksum_t z_checksum;
110 int z_num_other_fields; 110 int z_num_other_fields;
111 char *z_other_fields[Z_MAXOTHERFIELDS]; 111 char *z_other_fields[Z_MAXOTHERFIELDS];
112 void *z_message; 112 caddr_t z_message;
113 int z_message_len; 113 int z_message_len;
114 } ZNotice_t; 114 } ZNotice_t;
115 115
116 /* Subscription structure */ 116 /* Subscription structure */
117 typedef struct _ZSubscriptions_t { 117 typedef struct _ZSubscriptions_t {