comparison libpurple/example/nullclient.c @ 17170:2e4e3c3028ae

merge of 'ad8976c24b5929a7dc2e27af5ffc3522aafa11d5' and 'd3bfc91bb7217e497887318eb24761f5116bf91a'
author Richard Laager <rlaager@wiktel.com>
date Sat, 19 May 2007 07:53:30 +0000
parents 4b65a67d23b8
children 9ffa9af32854
comparison
equal deleted inserted replaced
17169:9fd39a035729 17170:2e4e3c3028ae
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 {