Mercurial > mplayer.hg
comparison libmenu/menu.h @ 25419:59aba7a96701
Replace another m_struct_t by 'struct m_struct_st' to remove depedency
on m_struct.h when include libmenu/menu.h.
author | ulion |
---|---|
date | Tue, 18 Dec 2007 09:44:54 +0000 |
parents | b0cd876a0c32 |
children | e5a7f0401180 |
comparison
equal
deleted
inserted
replaced
25418:0cc73d213160 | 25419:59aba7a96701 |
---|---|
23 typedef struct menu_info_s { | 23 typedef struct menu_info_s { |
24 const char *info; | 24 const char *info; |
25 const char *name; | 25 const char *name; |
26 const char *author; | 26 const char *author; |
27 const char *comment; | 27 const char *comment; |
28 m_struct_t priv_st; // Config struct definition | 28 struct m_struct_st priv_st; // Config struct definition |
29 // cfg is a config struct as defined in cfg_st, it may be used as a priv struct | 29 // cfg is a config struct as defined in cfg_st, it may be used as a priv struct |
30 // cfg is filled from the attributs found in the cfg file | 30 // cfg is filled from the attributs found in the cfg file |
31 // the args param hold the content of the balise in the cfg file (if any) | 31 // the args param hold the content of the balise in the cfg file (if any) |
32 int (*open)(menu_t* menu, char* args); | 32 int (*open)(menu_t* menu, char* args); |
33 } menu_info_t; | 33 } menu_info_t; |