1 #ifndef MPLAYER_MP_FIFO_H
2 #define MPLAYER_MP_FIFO_H
5 int mplayer_get_key(void *ctx
, int fd
);
6 void mplayer_put_key(struct mp_fifo
*fifo
, int code
);
7 // Can be freed with talloc_free()
9 struct mp_fifo
*mp_fifo_create(struct MPOpts
*opts
);
13 #define mplayer_put_key(key) mplayer_put_key(global_vo->key_fifo, key)
16 #endif /* MPLAYER_MP_FIFO_H */