服务程序:
Conn.h
int TestConn(struct *p);
Conn.c
int TestConn(struct *p)
{
blabla......
}
客户程序:
test.c
void Test()
{
struct str;
TestConn(&str);
}
服务程序:
Conn.h
int TestConn(struct *p);
Conn.c
int TestConn(struct *p)
{
blabla......
}
客户程序:
test.c
void Test()
{
struct str;
TestConn(&str);
}