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.
12 lines
640 B
12 lines
640 B
/*******************************************************************************
|
|
* input_file.h: file streams functions interface
|
|
* (c)1999 VideoLAN
|
|
*******************************************************************************/
|
|
|
|
/******************************************************************************
|
|
* Prototypes
|
|
******************************************************************************/
|
|
int input_FileOpen ( input_thread_t *p_input );
|
|
int input_FileRead ( input_thread_t *p_input, const struct iovec *p_vector,
|
|
size_t i_count );
|
|
void input_FileClose ( input_thread_t *p_input );
|
|
|