I have a executable that requires ws2_32.dll but requires WS2tcpip.h and only works on Windows 7, doesn’t work on XP, haven’t tried vista.
This is a serious issue, as you can’t run the program without missing DLL files. How can I wrap it all up so I won’t have any missing DLL issues? Or compatibility issues at all!
I just used LoadLibrary and GetProcAddress to find the functions inside of ws2_32.dll, so your standard dynamic function linking. Simple!