]> Pileus Git - ~andy/gtk/blobdiff - modules/input/immultipress.c
Don't rotate pdf landscape output
[~andy/gtk] / modules / input / immultipress.c
index e53ccdd06797fd76c5710b361a0d24ce65d4165f..c2f31b5983274040f1a80812b7bc4a3fcc13f276 100644 (file)
@@ -11,9 +11,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "gtkimcontextmultipress.h"
@@ -38,27 +36,29 @@ static const GtkIMContextInfo *info_list[] = {
   &info
 };
 
-void
-im_module_init (GTypeModule *module)
+#ifndef INCLUDE_IM_multipress
+#define MODULE_ENTRY(type, function) G_MODULE_EXPORT type im_module_ ## function
+#else
+#define MODULE_ENTRY(type, function) type _gtk_immodule_multipress_ ## function
+#endif
+
+MODULE_ENTRY (void, init) (GTypeModule *module)
 {
   gtk_im_context_multipress_register_type(module);
 }
 
-void 
-im_module_exit (void)
+MODULE_ENTRY (void, exit) (void)
 {
 }
 
-void 
-im_module_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 *
-im_module_create (const gchar *context_id)
+MODULE_ENTRY (GtkIMContext *, create) (const gchar *context_id)
 {
   if (strcmp (context_id, CONTEXT_ID) == 0)
   {