| trying to learn sockets programming .. I have this tutorial i'm trying to udnerstand .. and the code is working fine up until 1 line:
if(NET_WinSockInitialize() != 0)
{ do something; }
the error i'm getting is:
error C2065: 'NET_WinSockInitialize' : undeclared identifier
does that mean the function NET_WinSockInitialize is not being identified .. in fact it is not.
that's the only error i get in this whole script .. i'll attach the script if anyone is interested.
the error is near : int main(void){ } -- near the bottom |