in the Winsock2 library getaddrinfo() and freeaddrinfo() was only added in Windows XP and on. I know how to replace them in legacy systems, but a conditional use depending on the Windows version won't help.

The application won't start in 9x with a message saying that it was linked to a missing export in WS2_32.dll.

I'm using MinGW to compile and link the code and would like to keep using it. Maybe writing those functions by myself?

Thank you very much for everything.

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

You can use LoadLibrary and GetProcAddress to (attempt to) get the addresses of getaddrinfo and freeaddrinfo, then call them via the pointers iff GetProcAddress returns a non-NULL pointer.

link|improve this answer
...and here is the way to do it. :) +1 – Andras Vass Mar 25 '10 at 21:04
Thank you very much! – Sam C. Mar 25 '10 at 21:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.