| 1365 table = g_hash_table_new(g_str_hash, g_str_equal); |
1365 table = g_hash_table_new(g_str_hash, g_str_equal); |
| 1366 g_hash_table_insert(table, "login_label", (gpointer)_("GG number...")); |
1366 g_hash_table_insert(table, "login_label", (gpointer)_("GG number...")); |
| 1367 return table; |
1367 return table; |
| 1368 } |
1368 } |
| 1369 |
1369 |
| 1370 static gsize |
1370 static gssize |
| 1371 ggp_get_max_message_size(PurpleConnection *gc) |
1371 ggp_get_max_message_size(PurpleConversation *conv) |
| 1372 { |
1372 { |
| 1373 /* it may depend on protocol version or other factors - check it */ |
1373 /* TODO: it may depend on protocol version or other factors */ |
| 1374 return 1232; |
1374 return 1232; |
| 1375 } |
1375 } |
| 1376 |
1376 |
| 1377 static PurplePluginProtocolInfo prpl_info = |
1377 static PurplePluginProtocolInfo prpl_info = |
| 1378 { |
1378 { |