mirror of
https://github.com/mpv-player/mpv
synced 2024-12-22 06:42:03 +00:00
Remove dependency on m_struct.h when include libmenu/menu.h.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25445 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
6cc3def957
commit
1f3ab9672a
@ -4,13 +4,15 @@ typedef struct menu_s menu_t;
|
||||
|
||||
typedef struct menu_def_st menu_def_t;
|
||||
|
||||
struct m_struct_st;
|
||||
|
||||
struct menu_s {
|
||||
struct MPContext *ctx;
|
||||
void (*draw)(menu_t* menu,mp_image_t* mpi);
|
||||
void (*read_cmd)(menu_t* menu,int cmd);
|
||||
void (*read_key)(menu_t* menu,int cmd);
|
||||
void (*close)(menu_t* menu);
|
||||
m_struct_t* priv_st;
|
||||
struct m_struct_st* priv_st;
|
||||
struct menu_priv_s* priv;
|
||||
int show; // Draw it ?
|
||||
int cl; // Close request (user sent a close cmd or
|
||||
|
Loading…
Reference in New Issue
Block a user