comparison gui/interface.h @ 33263:5f527a9a9521

Add an exit function. This function will allow performing clean-up operations. (MPlayer calls guiDone() before exiting, but only if the GUI has been initialized, i.e. if guiInit() has been called successfully. Any exit_player()/exit_player_with_rc() after GUI's cfg_read() until guiInit(), or any exit_player() during guiInit() itself will end the GUI without calling guiDone(). This exit function will at least handle abortions during guiInit() itself. It will be called twice in case of an guiExit() after GUI initialization - first directly, next by guiDone() via MPlayer's exit_player_with_rc().)
author ib
date Tue, 03 May 2011 12:19:22 +0000
parents ba432e34dc7e
children 3ce656827dd7
comparison
equal deleted inserted replaced
33262:9fb04a4269bb 33263:5f527a9a9521
237 int gstrcmp(const char *a, const char *b); 237 int gstrcmp(const char *a, const char *b);
238 char *gstrdup(const char *str); 238 char *gstrdup(const char *str);
239 void *gtkSet(int cmd, float fparam, void *vparam); 239 void *gtkSet(int cmd, float fparam, void *vparam);
240 void guiDone(void); 240 void guiDone(void);
241 void guiEventHandling(void); 241 void guiEventHandling(void);
242 void guiExit(int how);
242 int guiGetEvent(int type, void *arg); 243 int guiGetEvent(int type, void *arg);
243 void guiInit(void); 244 void guiInit(void);
244 void guiLoadFont(void); 245 void guiLoadFont(void);
245 void guiLoadSubtitle(char *name); 246 void guiLoadSubtitle(char *name);
246 int import_initial_playtree_into_gui(play_tree_t *my_playtree, m_config_t *config, int enqueue); 247 int import_initial_playtree_into_gui(play_tree_t *my_playtree, m_config_t *config, int enqueue);