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.
10 lines
513 B
10 lines
513 B
typedef struct dvdcss_s * dvdcss_t; |
|
typedef struct dvdcss_stream_cb dvdcss_stream_cb; |
|
dvdcss_t dvdcss_open (const char *psz_target); |
|
dvdcss_t dvdcss_open_stream (void *p_stream, dvdcss_stream_cb *p_stream_cb); |
|
int dvdcss_close (dvdcss_t); |
|
int dvdcss_seek (dvdcss_t, int i_blocks, int i_flags); |
|
int dvdcss_read (dvdcss_t, void *p_buffer, int i_blocks, int i_flags); |
|
int dvdcss_readv(dvdcss_t, void *p_iovec, int i_blocks, int i_flags); |
|
const char* dvdcss_error (const dvdcss_t); |
|
int dvdcss_is_scrambled (dvdcss_t); |