From: Yeoh H. <ye...@ye...> - 2003-10-16 01:20:03
|
Hi Brutus, I tried to compile EchoClient.asm and got a type not defined. The error is in line 60 wsaData resb WSAdata_size ; stores data about WinSock I checked the definition of WSAdata in win32n.inc and found that it is WSADATA. So I changed this line to: wsaData resb WSADATA_size ; stores data about WinSock After this EchoClient.asm compiles and links without any problems. :-) When I test run the program, a message box with caption "[ERROR] WinSock Echo Client" appears and the text message is: Error connecting to server... Yes, this is expected because I don't have EchoServer running. If you could post EchoServer.asm, I'll try it out and let you know the results. :-) Best Regards, Yeoh -- |