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
638 B
12 lines
638 B
/*******************************************************************************
|
|
* input_network.h: network functions interface
|
|
* (c)1999 VideoLAN
|
|
*******************************************************************************/
|
|
|
|
/******************************************************************************
|
|
* Prototypes
|
|
******************************************************************************/
|
|
int input_NetworkOpen ( input_thread_t *p_input );
|
|
int input_NetworkRead ( input_thread_t *p_input, const struct iovec *p_vector,
|
|
size_t i_count );
|
|
void input_NetworkClose ( input_thread_t *p_input );
|
|
|