forked from AuroraMiddleware/gtk
Bug 523225 - modules/input/im*.c: MODULE_ENTRY macros make illegal code
2008-03-18 Tor Lillqvist <tml@novell.com> Bug 523225 - modules/input/im*.c: MODULE_ENTRY macros make illegal code * modules/input/im*.c: Modify the MODULE_ENTRY macro so the G_MODULE_ENTRY decoration can be put in a more correct place. svn path=/trunk/; revision=19902
This commit is contained in:
parent
b2d0cc5d52
commit
2dce0b35a5
@ -1,3 +1,10 @@
|
||||
2008-03-18 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
Bug 523225 - modules/input/im*.c: MODULE_ENTRY macros make illegal code
|
||||
|
||||
* modules/input/im*.c: Modify the MODULE_ENTRY macro so the
|
||||
G_MODULE_ENTRY decoration can be put in a more correct place.
|
||||
|
||||
2008-03-18 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* gtk/gtkmountoperation.c (gtk_mount_operation_ask_password): set
|
||||
|
@ -462,32 +462,28 @@ static const GtkIMContextInfo *info_list[] = {
|
||||
};
|
||||
|
||||
#ifndef INCLUDE_IM_am_et
|
||||
#define MODULE_ENTRY(function) G_MODULE_EXPORT im_module_ ## function
|
||||
#define MODULE_ENTRY(type,function) G_MODULE_EXPORT type im_module_ ## function
|
||||
#else
|
||||
#define MODULE_ENTRY(function) _gtk_immodule_am_et_ ## function
|
||||
#define MODULE_ENTRY(type, function) type _gtk_immodule_am_et_ ## function
|
||||
#endif
|
||||
|
||||
void
|
||||
MODULE_ENTRY (init) (GTypeModule *module)
|
||||
MODULE_ENTRY (void, init) (GTypeModule *module)
|
||||
{
|
||||
am_et_register_type (module);
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (exit) (void)
|
||||
MODULE_ENTRY (void, exit) (void)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
MODULE_ENTRY (void, list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
{
|
||||
*contexts = info_list;
|
||||
*n_contexts = G_N_ELEMENTS (info_list);
|
||||
}
|
||||
|
||||
GtkIMContext *
|
||||
MODULE_ENTRY (create) (const gchar *context_id)
|
||||
MODULE_ENTRY (GtkIMContext *, create) (const gchar *context_id)
|
||||
{
|
||||
if (strcmp (context_id, "am_et") == 0)
|
||||
return g_object_new (type_am_et_translit, NULL);
|
||||
|
@ -99,32 +99,28 @@ static const GtkIMContextInfo *info_list[] = {
|
||||
};
|
||||
|
||||
#ifndef INCLUDE_IM_cedilla
|
||||
#define MODULE_ENTRY(function) G_MODULE_EXPORT im_module_ ## function
|
||||
#define MODULE_ENTRY(type, function) G_MODULE_EXPORT type im_module_ ## function
|
||||
#else
|
||||
#define MODULE_ENTRY(function) _gtk_immodule_cedilla_ ## function
|
||||
#define MODULE_ENTRY(type, function) type _gtk_immodule_cedilla_ ## function
|
||||
#endif
|
||||
|
||||
void
|
||||
MODULE_ENTRY (init) (GTypeModule *module)
|
||||
MODULE_ENTRY (void, init) (GTypeModule *module)
|
||||
{
|
||||
cedilla_register_type (module);
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (exit) (void)
|
||||
MODULE_ENTRY (void, exit) (void)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
MODULE_ENTRY (void, list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
{
|
||||
*contexts = info_list;
|
||||
*n_contexts = G_N_ELEMENTS (info_list);
|
||||
}
|
||||
|
||||
GtkIMContext *
|
||||
MODULE_ENTRY (create) (const gchar *context_id)
|
||||
MODULE_ENTRY (GtkIMContext *, create) (const gchar *context_id)
|
||||
{
|
||||
if (strcmp (context_id, "cedilla") == 0)
|
||||
return g_object_new (type_cedilla, NULL);
|
||||
|
@ -225,32 +225,28 @@ static const GtkIMContextInfo *info_list[] = {
|
||||
};
|
||||
|
||||
#ifndef INCLUDE_IM_cyrillic_translit
|
||||
#define MODULE_ENTRY(function) G_MODULE_EXPORT im_module_ ## function
|
||||
#define MODULE_ENTRY(type, function) G_MODULE_EXPORT type im_module_ ## function
|
||||
#else
|
||||
#define MODULE_ENTRY(function) _gtk_immodule_cyrillic_translit_ ## function
|
||||
#define MODULE_ENTRY(type, function) type _gtk_immodule_cyrillic_translit_ ## function
|
||||
#endif
|
||||
|
||||
void
|
||||
MODULE_ENTRY (init) (GTypeModule *module)
|
||||
MODULE_ENTRY (void, init) (GTypeModule *module)
|
||||
{
|
||||
cyrillic_translit_register_type (module);
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (exit) (void)
|
||||
MODULE_ENTRY (void, exit) (void)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
MODULE_ENTRY (void, list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
{
|
||||
*contexts = info_list;
|
||||
*n_contexts = G_N_ELEMENTS (info_list);
|
||||
}
|
||||
|
||||
GtkIMContext *
|
||||
MODULE_ENTRY (create) (const gchar *context_id)
|
||||
MODULE_ENTRY (GtkIMContext *, create) (const gchar *context_id)
|
||||
{
|
||||
if (strcmp (context_id, "cyrillic_translit") == 0)
|
||||
return g_object_new (type_cyrillic_translit, NULL);
|
||||
|
@ -40,31 +40,27 @@ static const GtkIMContextInfo *info_list[] = {
|
||||
};
|
||||
|
||||
#ifndef INCLUDE_IM_ime
|
||||
#define MODULE_ENTRY(function) G_MODULE_EXPORT im_module_ ## function
|
||||
#define MODULE_ENTRY(type,function) G_MODULE_EXPORT type im_module_ ## function
|
||||
#else
|
||||
#define MODULE_ENTRY(function) _gtk_immodule_ime_ ## function
|
||||
#define MODULE_ENTRY(type, function) type _gtk_immodule_ime_ ## function
|
||||
#endif
|
||||
|
||||
void
|
||||
MODULE_ENTRY (init) (GTypeModule * module)
|
||||
MODULE_ENTRY (void, init) (GTypeModule * module)
|
||||
{
|
||||
gtk_im_context_ime_register_type (module);
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (exit) (void)
|
||||
MODULE_ENTRY (void, exit) (void)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (list) (const GtkIMContextInfo *** contexts, int *n_contexts)
|
||||
MODULE_ENTRY (void, list) (const GtkIMContextInfo *** contexts, int *n_contexts)
|
||||
{
|
||||
*contexts = info_list;
|
||||
*n_contexts = G_N_ELEMENTS (info_list);
|
||||
}
|
||||
|
||||
GtkIMContext *
|
||||
MODULE_ENTRY (create) (const gchar * context_id)
|
||||
MODULE_ENTRY (GtkIMContext *, create) (const gchar * context_id)
|
||||
{
|
||||
g_return_val_if_fail (context_id, NULL);
|
||||
|
||||
|
@ -135,32 +135,28 @@ static const GtkIMContextInfo *info_list[] = {
|
||||
};
|
||||
|
||||
#ifndef INCLUDE_IM_inuktitut
|
||||
#define MODULE_ENTRY(function) G_MODULE_EXPORT im_module_ ## function
|
||||
#define MODULE_ENTRY(type, function) G_MODULE_EXPORT type im_module_ ## function
|
||||
#else
|
||||
#define MODULE_ENTRY(function) _gtk_immodule_inuktitut_ ## function
|
||||
#define MODULE_ENTRY(type, function) type _gtk_immodule_inuktitut_ ## function
|
||||
#endif
|
||||
|
||||
void
|
||||
MODULE_ENTRY (init) (GTypeModule *module)
|
||||
MODULE_ENTRY (void, init) (GTypeModule *module)
|
||||
{
|
||||
inuktitut_register_type (module);
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (exit) (void)
|
||||
MODULE_ENTRY (void, exit) (void)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
MODULE_ENTRY (void, list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
{
|
||||
*contexts = info_list;
|
||||
*n_contexts = G_N_ELEMENTS (info_list);
|
||||
}
|
||||
|
||||
GtkIMContext *
|
||||
MODULE_ENTRY (create) (const gchar *context_id)
|
||||
MODULE_ENTRY (GtkIMContext *, create) (const gchar *context_id)
|
||||
{
|
||||
if (strcmp (context_id, "inuktitut") == 0)
|
||||
return g_object_new (type_inuktitut_translit, NULL);
|
||||
|
@ -153,32 +153,28 @@ static const GtkIMContextInfo *info_list[] = {
|
||||
};
|
||||
|
||||
#ifndef INCLUDE_IM_ipa
|
||||
#define MODULE_ENTRY(function) G_MODULE_EXPORT im_module_ ## function
|
||||
#define MODULE_ENTRY(type, function) G_MODULE_EXPORT type im_module_ ## function
|
||||
#else
|
||||
#define MODULE_ENTRY(function) _gtk_immodule_ipa_ ## function
|
||||
#define MODULE_ENTRY(type, function) type _gtk_immodule_ipa_ ## function
|
||||
#endif
|
||||
|
||||
void
|
||||
MODULE_ENTRY (init) (GTypeModule *module)
|
||||
MODULE_ENTRY (void, init) (GTypeModule *module)
|
||||
{
|
||||
ipa_register_type (module);
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (exit) (void)
|
||||
MODULE_ENTRY (void, exit) (void)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
MODULE_ENTRY (void, list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
{
|
||||
*contexts = info_list;
|
||||
*n_contexts = G_N_ELEMENTS (info_list);
|
||||
}
|
||||
|
||||
GtkIMContext *
|
||||
MODULE_ENTRY (create) (const gchar *context_id)
|
||||
MODULE_ENTRY (GtkIMContext *, create) (const gchar *context_id)
|
||||
{
|
||||
if (strcmp (context_id, "ipa") == 0)
|
||||
return g_object_new (type_ipa, NULL);
|
||||
|
@ -39,32 +39,28 @@ static const GtkIMContextInfo *info_list[] = {
|
||||
};
|
||||
|
||||
#ifndef INCLUDE_IM_multipress
|
||||
#define MODULE_ENTRY(function) G_MODULE_EXPORT im_module_ ## function
|
||||
#define MODULE_ENTRY(type, function) G_MODULE_EXPORT type im_module_ ## function
|
||||
#else
|
||||
#define MODULE_ENTRY(function) _gtk_immodule_multipress_ ## function
|
||||
#define MODULE_ENTRY(type, function) type _gtk_immodule_multipress_ ## function
|
||||
#endif
|
||||
|
||||
void
|
||||
MODULE_ENTRY (init) (GTypeModule *module)
|
||||
MODULE_ENTRY (void, init) (GTypeModule *module)
|
||||
{
|
||||
gtk_im_context_multipress_register_type(module);
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (exit) (void)
|
||||
MODULE_ENTRY (void, exit) (void)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
MODULE_ENTRY (void, list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
{
|
||||
*contexts = info_list;
|
||||
*n_contexts = G_N_ELEMENTS (info_list);
|
||||
}
|
||||
|
||||
GtkIMContext *
|
||||
MODULE_ENTRY (create) (const gchar *context_id)
|
||||
MODULE_ENTRY (GtkIMContext *, create) (const gchar *context_id)
|
||||
{
|
||||
if (strcmp (context_id, CONTEXT_ID) == 0)
|
||||
{
|
||||
|
@ -43,32 +43,28 @@ static const GtkIMContextInfo *info_list[] = {
|
||||
};
|
||||
|
||||
#ifndef INCLUDE_IM_thai
|
||||
#define MODULE_ENTRY(function) G_MODULE_EXPORT im_module_ ## function
|
||||
#define MODULE_ENTRY(type, function) G_MODULE_EXPORT type im_module_ ## function
|
||||
#else
|
||||
#define MODULE_ENTRY(function) _gtk_immodule_thai_ ## function
|
||||
#define MODULE_ENTRY(type, function) type _gtk_immodule_thai_ ## function
|
||||
#endif
|
||||
|
||||
void
|
||||
MODULE_ENTRY (init) (GTypeModule *module)
|
||||
MODULE_ENTRY (void, init) (GTypeModule *module)
|
||||
{
|
||||
gtk_im_context_thai_register_type (module);
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (exit) (void)
|
||||
MODULE_ENTRY (void, exit) (void)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
MODULE_ENTRY (void, list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
{
|
||||
*contexts = info_list;
|
||||
*n_contexts = G_N_ELEMENTS (info_list);
|
||||
}
|
||||
|
||||
GtkIMContext *
|
||||
MODULE_ENTRY (create) (const gchar *context_id)
|
||||
MODULE_ENTRY (GtkIMContext *, create) (const gchar *context_id)
|
||||
{
|
||||
if (strcmp (context_id, "thai") == 0)
|
||||
return gtk_im_context_thai_new ();
|
||||
|
@ -461,32 +461,28 @@ static const GtkIMContextInfo *info_list[] = {
|
||||
};
|
||||
|
||||
#ifndef INCLUDE_IM_ti_er
|
||||
#define MODULE_ENTRY(function) G_MODULE_EXPORT im_module_ ## function
|
||||
#define MODULE_ENTRY(type, function) G_MODULE_EXPORT type im_module_ ## function
|
||||
#else
|
||||
#define MODULE_ENTRY(function) _gtk_immodule_ti_er_ ## function
|
||||
#define MODULE_ENTRY(type, function) type _gtk_immodule_ti_er_ ## function
|
||||
#endif
|
||||
|
||||
void
|
||||
MODULE_ENTRY (init) (GTypeModule *module)
|
||||
MODULE_ENTRY (void, init) (GTypeModule *module)
|
||||
{
|
||||
ti_er_register_type (module);
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (exit) (void)
|
||||
MODULE_ENTRY (void, exit) (void)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
MODULE_ENTRY (void, list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
{
|
||||
*contexts = info_list;
|
||||
*n_contexts = G_N_ELEMENTS (info_list);
|
||||
}
|
||||
|
||||
GtkIMContext *
|
||||
MODULE_ENTRY (create) (const gchar *context_id)
|
||||
MODULE_ENTRY (GtkIMContext *, create) (const gchar *context_id)
|
||||
{
|
||||
if (strcmp (context_id, "ti_er") == 0)
|
||||
return g_object_new (type_ti_er_translit, NULL);
|
||||
|
@ -461,32 +461,28 @@ static const GtkIMContextInfo *info_list[] = {
|
||||
};
|
||||
|
||||
#ifndef INCLUDE_IM_ti_et
|
||||
#define MODULE_ENTRY(function) G_MODULE_EXPORT im_module_ ## function
|
||||
#define MODULE_ENTRY(type, function) G_MODULE_EXPORT type im_module_ ## function
|
||||
#else
|
||||
#define MODULE_ENTRY(function) _gtk_immodule_ti_et_ ## function
|
||||
#define MODULE_ENTRY(type, function) type _gtk_immodule_ti_et_ ## function
|
||||
#endif
|
||||
|
||||
void
|
||||
MODULE_ENTRY (init) (GTypeModule *module)
|
||||
MODULE_ENTRY (void, init) (GTypeModule *module)
|
||||
{
|
||||
ti_et_register_type (module);
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (exit) (void)
|
||||
MODULE_ENTRY (void, exit) (void)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
MODULE_ENTRY (void, list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
{
|
||||
*contexts = info_list;
|
||||
*n_contexts = G_N_ELEMENTS (info_list);
|
||||
}
|
||||
|
||||
GtkIMContext *
|
||||
MODULE_ENTRY (create) (const gchar *context_id)
|
||||
MODULE_ENTRY (GtkIMContext *, create) (const gchar *context_id)
|
||||
{
|
||||
if (strcmp (context_id, "ti_et") == 0)
|
||||
return g_object_new (type_ti_et_translit, NULL);
|
||||
|
@ -252,32 +252,28 @@ static const GtkIMContextInfo *info_list[] = {
|
||||
};
|
||||
|
||||
#ifndef INCLUDE_IM_viqr
|
||||
#define MODULE_ENTRY(function) G_MODULE_EXPORT im_module_ ## function
|
||||
#define MODULE_ENTRY(type, function) G_MODULE_EXPORT type im_module_ ## function
|
||||
#else
|
||||
#define MODULE_ENTRY(function) _gtk_immodule_viqr_ ## function
|
||||
#define MODULE_ENTRY(type, function) type _gtk_immodule_viqr_ ## function
|
||||
#endif
|
||||
|
||||
void
|
||||
MODULE_ENTRY (init) (GTypeModule *module)
|
||||
MODULE_ENTRY (void, init) (GTypeModule *module)
|
||||
{
|
||||
viqr_register_type (module);
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (exit) (void)
|
||||
MODULE_ENTRY (void, exit) (void)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
MODULE_ENTRY (void, list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
{
|
||||
*contexts = info_list;
|
||||
*n_contexts = G_N_ELEMENTS (info_list);
|
||||
}
|
||||
|
||||
GtkIMContext *
|
||||
MODULE_ENTRY (create) (const gchar *context_id)
|
||||
MODULE_ENTRY (GtkIMContext *, create) (const gchar *context_id)
|
||||
{
|
||||
if (strcmp (context_id, "viqr") == 0)
|
||||
return g_object_new (type_viqr_translit, NULL);
|
||||
|
@ -36,33 +36,29 @@ static const GtkIMContextInfo *info_list[] = {
|
||||
};
|
||||
|
||||
#ifndef INCLUDE_IM_xim
|
||||
#define MODULE_ENTRY(function) G_MODULE_EXPORT im_module_ ## function
|
||||
#define MODULE_ENTRY(type, function) G_MODULE_EXPORT type im_module_ ## function
|
||||
#else
|
||||
#define MODULE_ENTRY(function) _gtk_immodule_xim_ ## function
|
||||
#define MODULE_ENTRY(type, function) type _gtk_immodule_xim_ ## function
|
||||
#endif
|
||||
|
||||
void
|
||||
MODULE_ENTRY (init) (GTypeModule *type_module)
|
||||
MODULE_ENTRY (void, init) (GTypeModule *type_module)
|
||||
{
|
||||
gtk_im_context_xim_register_type (type_module);
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (exit) (void)
|
||||
MODULE_ENTRY (void, exit) (void)
|
||||
{
|
||||
gtk_im_context_xim_shutdown ();
|
||||
}
|
||||
|
||||
void
|
||||
MODULE_ENTRY (list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
MODULE_ENTRY (void, list) (const GtkIMContextInfo ***contexts,
|
||||
int *n_contexts)
|
||||
{
|
||||
*contexts = info_list;
|
||||
*n_contexts = G_N_ELEMENTS (info_list);
|
||||
}
|
||||
|
||||
GtkIMContext *
|
||||
MODULE_ENTRY (create) (const gchar *context_id)
|
||||
MODULE_ENTRY (GtkIMContext *, create) (const gchar *context_id)
|
||||
{
|
||||
if (strcmp (context_id, "xim") == 0)
|
||||
return gtk_im_context_xim_new ();
|
||||
|
Loading…
Reference in New Issue
Block a user