on line 46 in tcp.h i get the error tcp.h error expected ';',',' or ')' before '=' token
what am i missing?
thanxs
john
tcp.h error expected ';',',' or ')' before '=' token
Re: tcp.h error expected ';',',' or ')' before '=' token
Looks like you are including tcp.h in a C file. This header file uses overloaded function calls which are a C++ feature. Try renaming your file to .cpp.
Re: tcp.h error expected ';',',' or ')' before '=' token
Thanks, that was it.
John
John