comparison libpurple/example/nullclient.c @ 17080:4b65a67d23b8

Replace some C99 struct syntax.
author Richard Laager <rlaager@wiktel.com>
date Mon, 14 May 2007 23:34:08 +0000
parents 07cf49a0f404
children 9ffa9af32854
comparison
equal deleted inserted replaced
17079:79f6b097a0a6 17080:4b65a67d23b8
135 name, message); 135 name, message);
136 } 136 }
137 137
138 static PurpleConversationUiOps null_conv_uiops = 138 static PurpleConversationUiOps null_conv_uiops =
139 { 139 {
140 .write_conv = null_write_conv 140 NULL, /* create_conversation */
141 NULL, /* destroy_conversation */
142 NULL, /* write_chat */
143 NULL, /* write_im */
144 null_write_conv, /* write_conv */
145 NULL, /* chat_add_users */
146 NULL, /* chat_rename_user */
147 NULL, /* chat_remove_users */
148 NULL, /* chat_update_user */
149 NULL, /* present */
150 NULL, /* has_focus */
151 NULL, /* custom_smiley_add */
152 NULL, /* custom_smiley_write */
153 NULL, /* custom_smiley_close */
154 NULL, /* send_confirm */
155 NULL,
156 NULL,
157 NULL,
158 NULL
141 }; 159 };
142 160
143 static void 161 static void
144 null_ui_init() 162 null_ui_init()
145 { 163 {