| 108 /* The signals subsystem is important and should be first. */ |
108 /* The signals subsystem is important and should be first. */ |
| 109 purple_signals_init(); |
109 purple_signals_init(); |
| 110 |
110 |
| 111 purple_util_init(); |
111 purple_util_init(); |
| 112 |
112 |
| 113 purple_signal_register(core, "uri-handler", |
|
| 114 purple_marshal_BOOLEAN__POINTER_POINTER_POINTER, |
|
| 115 G_TYPE_BOOLEAN, 3, |
|
| 116 G_TYPE_STRING, /* Protocol */ |
|
| 117 G_TYPE_STRING, /* Command */ |
|
| 118 G_TYPE_POINTER); /* Parameters (GHashTable *) */ |
|
| 119 |
|
| 120 purple_signal_register(core, "core-initialized", purple_marshal_VOID, |
113 purple_signal_register(core, "core-initialized", purple_marshal_VOID, |
| 121 G_TYPE_NONE, 0); |
114 G_TYPE_NONE, 0); |
| 122 |
115 |
| 123 purple_core_print_version(); |
116 purple_core_print_version(); |
| 124 |
117 |