Rage video and audio player
https://www.enlightenment.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
395 B
16 lines
395 B
#ifndef _WINVID_H__ |
|
#define _WINVID_H__ 1 |
|
|
|
typedef struct _Winvid_Entry |
|
{ |
|
const char *file; |
|
const char *sub; |
|
} Winvid_Entry; |
|
|
|
void win_video_init(Evas_Object *win); |
|
void win_video_file_list_set(Evas_Object *win, Eina_List *list); |
|
void win_video_insert(Evas_Object *win, const char *file); |
|
void win_video_free(Evas_Object *win); |
|
void win_video_goto(Evas_Object *win, Eina_List *l); |
|
|
|
#endif
|
|
|