From: Gisle Vanem Date: Wed, 21 Aug 2013 20:19:52 +0000 (+0200) Subject: curl_easy_perform_ev: make it CURL_EXTERN X-Git-Tag: curl-7_33_0~233 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8804ffd4faa19a6f6d24f452bfbd826e11a4dc23;p=thirdparty%2Fcurl.git curl_easy_perform_ev: make it CURL_EXTERN I build curl.exe (using MingW) with '-DCURLDEBUG' and by importing from libcurl.dll. Which means the new curl_easy_perform_ev() must be exported from libcurl.dll. --- diff --git a/lib/easyif.h b/lib/easyif.h index eed160577e..043ff437d4 100644 --- a/lib/easyif.h +++ b/lib/easyif.h @@ -26,7 +26,7 @@ * Prototypes for library-wide functions provided by easy.c */ #ifdef CURLDEBUG -CURLcode curl_easy_perform_ev(CURL *easy); +CURL_EXTERN CURLcode curl_easy_perform_ev(CURL *easy); #endif #endif /* HEADER_CURL_EASYIF_H */