I have it compiled and ready to go and curl_easy is in the curl sources

believe me its a library export.
I use it In Doom3 which also uses curl_easy

edit: Ah you ment that specific function oki.
Also included is the c++ wrapper libraries for curl but you probably wont need those in a C based engine.
Also got some undefined crap untill i played a bit with the project settings now it works just fine, ill investigate the steps i took and post them back here.
Edit again: ok i see now you are linking to the dll version, that wont work with the modified curl.h from me its static only. If you insist on using the dll leave curl.h alone but it works just fine if you link it statically.
Thing with the static lib is that you need to know what windows libraries curl depends on and add them to the linker as well, those are ws2_32.lib wldap32.lib advapi32.lib normaliz.lib some of them are probably allready in the linker but double check just in case. My bet would be that you are missing ws2_32.lib and wldap32.lib.
Productivity is a state of mind.