Mercurial > pidgin
diff 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 |
line wrap: on
line diff
--- a/libpurple/example/nullclient.c Mon May 14 23:17:42 2007 +0000 +++ b/libpurple/example/nullclient.c Mon May 14 23:34:08 2007 +0000 @@ -137,7 +137,25 @@ static PurpleConversationUiOps null_conv_uiops = { - .write_conv = null_write_conv + NULL, /* create_conversation */ + NULL, /* destroy_conversation */ + NULL, /* write_chat */ + NULL, /* write_im */ + null_write_conv, /* write_conv */ + NULL, /* chat_add_users */ + NULL, /* chat_rename_user */ + NULL, /* chat_remove_users */ + NULL, /* chat_update_user */ + NULL, /* present */ + NULL, /* has_focus */ + NULL, /* custom_smiley_add */ + NULL, /* custom_smiley_write */ + NULL, /* custom_smiley_close */ + NULL, /* send_confirm */ + NULL, + NULL, + NULL, + NULL }; static void
