16 lines
192 B
C
16 lines
192 B
C
#ifndef TCP_SERVER_H
|
|
#define TCP_SERVER_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void TcpSrvTask_S1(void *argument);
|
|
void TcpSrvTask_S2(void *argument);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|