#ifndef __INIT_FNC_H__ #define __INIT_FNC_H__ #define AUTOSTART_FLAG "AutoStart" extern char *lbl_chat[]; extern char *chat_text[]; extern GtkStyle *fast_style; /********************************************************************************/ /* fill the clist named "running_hub_clist" with the list of all running client */ /********************************************************************************/ void fill_running_hub_clist(void); void fill_pub_hub_clist(int flag); /* flag==TRUE, always reload, flag==FLASE, reload if clist is empty */ void fill_seen_hub_clist(int flag); /* flag==TRUE, always reload, flag==FLASE, reload if clist is empty */ void fill_recent_hub_clist(void); void init_clist(void); /***********************************************/ /* load the combo containing all profile names */ /***********************************************/ void load_profile_name_combo(void); void load_done_xfer(char *fname, int with_clear); /************************************************************/ /* set all fields of preference_box according to vars value */ /************************************************************/ void fix_pref_window(void); /******************************/ /* periodic functions to call */ /******************************/ gint running_client_list_periodic_refresh(gpointer data); gint favorite_client_periodic_autostart(gpointer data); #endif