diff -r 36e9d07f56c3 -r 519199cca273 src/util.c --- a/src/util.c Tue Jan 17 19:28:45 2006 +0000 +++ b/src/util.c Tue Jan 17 23:22:19 2006 +0000 @@ -65,6 +65,18 @@ static char custom_home_dir[MAXPATHLEN]; static char home_dir[MAXPATHLEN]; +GaimMenuAction * +gaim_menu_action_new(char *label, GaimCallback callback, gpointer data, + GList *children) +{ + GaimMenuAction *act = g_new0(GaimMenuAction, 1); + act->label = label; + act->callback = callback; + act->data = data; + act->children = children; + return act; +} + /************************************************************************** * Base16 Functions **************************************************************************/