Update of /cvsroot/ayttm/ayttm/modules/msn2
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12682/modules/msn2
Modified Files:
msn.c
Log Message:
reformatted source code
Index: msn.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/modules/msn2/msn.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- msn.c 14 Sep 2009 10:40:36 -0000 1.14
+++ msn.c 17 Sep 2009 12:04:59 -0000 1.15
@@ -80,17 +80,15 @@
************************************************************************************/
/* Module defines */
#ifndef USE_POSIX_DLOPEN
- #define plugin_info msn2_LTX_plugin_info
- #define SERVICE_INFO msn2_LTX_SERVICE_INFO
- #define plugin_init msn2_LTX_plugin_init
- #define plugin_finish msn2_LTX_plugin_finish
- #define module_version msn2_LTX_module_version
+#define plugin_info msn2_LTX_plugin_info
+#define SERVICE_INFO msn2_LTX_SERVICE_INFO
+#define plugin_init msn2_LTX_plugin_init
[...2434 lines suppressed...]
}
-
-struct service_callbacks * query_callbacks()
+struct service_callbacks *query_callbacks()
{
- struct service_callbacks * sc;
+ struct service_callbacks *sc;
- sc = g_new0( struct service_callbacks, 1 );
+ sc = g_new0(struct service_callbacks, 1);
sc->query_connected = ay_msn_query_connected;
sc->login = ay_msn_login;
@@ -2165,5 +2174,3 @@
sc->rename_group = ay_msn_rename_group;
return sc;
}
-
-
|