12 lines
219 B
C
12 lines
219 B
C
|
#ifndef STREAMING_H
|
||
|
#define STREAMING_H
|
||
|
|
||
|
|
||
|
int streaming_enable(char* host, char* port, char* app, char* serial_number, char* handle);
|
||
|
int streaming_disable();
|
||
|
int streaming_pop_error();
|
||
|
void streaming_close();
|
||
|
|
||
|
|
||
|
#endif
|