I am creating a chat application which I eventually want to use with my friends. Now I am using Winsock2 for the communication, but I have noticed that the lib file is dramatically increasing the bin size. Is there any way to use Winsock without statically linking it? The .dll file already contains all of the functions I need, so why do I still need the lib file?
UPDATE
Turns out it had something to do with the sqlite lib. For some reason it was increasing my bin size by 900 kb, I am gonna try and do it differently.