blob: 9273987508eaaf3e46983f999aeaed6de8ec1d7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef ICCLIENT_H
#define ICCLIENT_H
#ifdef __cplusplus
extern "C" {
#endif
bool icclient_init(const char *url);
void icclient_cleanup();
#ifdef __cplusplus
}
#endif
#endif // ICCLIENT_H
|