diff options
author | Gisle Vanem <gvanem@broadpark.no> | 2013-08-21 22:19:52 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2013-08-21 22:19:52 +0200 |
commit | 8804ffd4faa19a6f6d24f452bfbd826e11a4dc23 (patch) | |
tree | ed4663e93589bf8774213f0755946c3b7763d746 /lib/easyif.h | |
parent | 19122c07682c268c2383218f62e09c3d24a41e76 (diff) | |
download | curl-8804ffd4faa19a6f6d24f452bfbd826e11a4dc23.tar.gz |
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.
Diffstat (limited to 'lib/easyif.h')
-rw-r--r-- | lib/easyif.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/easyif.h b/lib/easyif.h index eed160577..043ff437d 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 */ |