view gtk/plugins/perl/common/GtkUI.xs @ 14587:bee5661c15cb

[gaim-migrate @ 17311] I couldn't see a reason why we needed all of gaim_gtk_roomlist_dialog_new, gaim_gtk_roomlist_dialog_new_with_account, gaim_gtk_roomlist_dialog_show, and gaim_gtk_roomlist_dialog_show_with_account especially considering the _show functions basically just called the _new functions. So I whittled us down to just _show and _show_with_account being visible. And since nothing outside GtkRoomlist.c was using the GaimGtkRoomlistDialog struct I made that private too. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Mon, 18 Sep 2006 18:14:50 +0000
parents 3ed24586efcb
children
line wrap: on
line source

#include "gtkmodule.h"

/* Prototypes for the BOOT section below. */
GAIM_PERL_BOOT_PROTO(GtkUI__Account);
GAIM_PERL_BOOT_PROTO(GtkUI__BuddyList);
GAIM_PERL_BOOT_PROTO(GtkUI__Connection);
GAIM_PERL_BOOT_PROTO(GtkUI__Conversation);
GAIM_PERL_BOOT_PROTO(GtkUI__Conversation__Window);
GAIM_PERL_BOOT_PROTO(GtkUI__Debug);
GAIM_PERL_BOOT_PROTO(GtkUI__Dialogs);
GAIM_PERL_BOOT_PROTO(GtkUI__IMHtml);
GAIM_PERL_BOOT_PROTO(GtkUI__IMHtmlToolbar);
GAIM_PERL_BOOT_PROTO(GtkUI__Log);
GAIM_PERL_BOOT_PROTO(GtkUI__MenuTray);
GAIM_PERL_BOOT_PROTO(GtkUI__Plugin);
GAIM_PERL_BOOT_PROTO(GtkUI__PluginPref);
GAIM_PERL_BOOT_PROTO(GtkUI__Pounce);
GAIM_PERL_BOOT_PROTO(GtkUI__Prefs);
GAIM_PERL_BOOT_PROTO(GtkUI__Privacy);
GAIM_PERL_BOOT_PROTO(GtkUI__Roomlist);
GAIM_PERL_BOOT_PROTO(GtkUI__Status);
#ifndef _WIN32
GAIM_PERL_BOOT_PROTO(GtkUI__Session);
#endif
GAIM_PERL_BOOT_PROTO(GtkUI__Sound);
GAIM_PERL_BOOT_PROTO(GtkUI__StatusBox);
GAIM_PERL_BOOT_PROTO(GtkUI__Themes);
GAIM_PERL_BOOT_PROTO(GtkUI__Utils);
GAIM_PERL_BOOT_PROTO(GtkUI__Xfer);

MODULE = Gaim::GtkUI  PACKAGE = Gaim::GtkUI  PREFIX = gaim_gtk_
PROTOTYPES: ENABLE

BOOT:
	GAIM_PERL_BOOT(GtkUI__Account);
	GAIM_PERL_BOOT(GtkUI__BuddyList);
	GAIM_PERL_BOOT(GtkUI__Connection);
	GAIM_PERL_BOOT(GtkUI__Conversation);
	GAIM_PERL_BOOT(GtkUI__Conversation__Window);
	GAIM_PERL_BOOT(GtkUI__Debug);
	GAIM_PERL_BOOT(GtkUI__Dialogs);
	GAIM_PERL_BOOT(GtkUI__IMHtml);
	GAIM_PERL_BOOT(GtkUI__IMHtmlToolbar);
	GAIM_PERL_BOOT(GtkUI__Log);
	GAIM_PERL_BOOT(GtkUI__MenuTray);
	GAIM_PERL_BOOT(GtkUI__Plugin);
	GAIM_PERL_BOOT(GtkUI__PluginPref);
	GAIM_PERL_BOOT(GtkUI__Pounce);
	GAIM_PERL_BOOT(GtkUI__Prefs);
	GAIM_PERL_BOOT(GtkUI__Privacy);
	GAIM_PERL_BOOT(GtkUI__Roomlist);
	GAIM_PERL_BOOT(GtkUI__Status);
#ifndef _WIN32
	GAIM_PERL_BOOT(GtkUI__Session);
#endif
	GAIM_PERL_BOOT(GtkUI__Sound);
	GAIM_PERL_BOOT(GtkUI__StatusBox);
	GAIM_PERL_BOOT(GtkUI__Themes);
	GAIM_PERL_BOOT(GtkUI__Utils);
	GAIM_PERL_BOOT(GtkUI__Xfer);