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.
21 lines
1.1 KiB
21 lines
1.1 KiB
/*******************************************************************************
|
|
* video_sys.h: system dependant video output display method API
|
|
* (c)1999 VideoLAN
|
|
*******************************************************************************/
|
|
|
|
/*******************************************************************************
|
|
* Prototypes
|
|
*******************************************************************************/
|
|
int vout_SysCreate ( p_vout_thread_t p_vout, char *psz_display, int i_root_window );
|
|
int vout_SysInit ( p_vout_thread_t p_vout );
|
|
void vout_SysEnd ( p_vout_thread_t p_vout );
|
|
void vout_SysDestroy ( p_vout_thread_t p_vout );
|
|
int vout_SysManage ( p_vout_thread_t p_vout );
|
|
void vout_SysDisplay ( p_vout_thread_t p_vout );
|
|
void * vout_SysGetPicture ( p_vout_thread_t p_vout );
|
|
void vout_SysPrint ( p_vout_thread_t p_vout, int i_x, int i_y,
|
|
int i_halign, int i_valign,
|
|
unsigned char *psz_text );
|
|
|
|
|
|
|
|
|