comparison libpurple/core.h @ 32433:98520ee78f12

Use G_BEGIN/END_DECLS in public libpurple files. This was previously inconsistent. Sometimes there was even both the GLib macros and an extern "C" line.
author Elliott Sales de Andrade <qulogic@pidgin.im>
date Tue, 03 Jan 2012 23:32:59 +0000
parents 02a2e8183b1d
children
comparison
equal deleted inserted replaced
32432:79fdae8fa875 32433:98520ee78f12
74 void (*_purple_reserved1)(void); 74 void (*_purple_reserved1)(void);
75 void (*_purple_reserved2)(void); 75 void (*_purple_reserved2)(void);
76 void (*_purple_reserved3)(void); 76 void (*_purple_reserved3)(void);
77 } PurpleCoreUiOps; 77 } PurpleCoreUiOps;
78 78
79 #ifdef __cplusplus 79 G_BEGIN_DECLS
80 extern "C" {
81 #endif
82 80
83 /** 81 /**
84 * Initializes the core of purple. 82 * Initializes the core of purple.
85 * 83 *
86 * This will setup preferences for all the core subsystems. 84 * This will setup preferences for all the core subsystems.
195 * hash table must not be freed and should not be modified. 193 * hash table must not be freed and should not be modified.
196 * 194 *
197 */ 195 */
198 GHashTable* purple_core_get_ui_info(void); 196 GHashTable* purple_core_get_ui_info(void);
199 197
200 #ifdef __cplusplus 198 G_END_DECLS
201 }
202 #endif
203 199
204 #endif /* _PURPLE_CORE_H_ */ 200 #endif /* _PURPLE_CORE_H_ */
205 201
206 /* 202 /*
207 203