16 lines
192 B
C
16 lines
192 B
C
#ifndef TCP_CLIENT_H
|
|
#define TCP_CLIENT_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void TcpCliTask_C1(void *argument);
|
|
void TcpCliTask_C2(void *argument);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|