12 lines
219 B
C
Raw Normal View History

2020-05-15 12:27:34 +02:00
#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