diff --git a/include/curl/curl.h b/include/curl/curl.h index 7c7a47f9c382f886ab032e890a01782f3fae6c9b..d4ce4cd43cb1fdbd549fbd687483c12bff0af84b 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -49,7 +49,7 @@ #define FALSE 0 #endif -#include +#include "types.h" #ifdef __cplusplus extern "C" { @@ -823,8 +823,8 @@ typedef enum { /* unfortunately, the easy.h and multi.h include files need options and info stuff before they can be included! */ -#include /* nothing in curl is fun without the easy stuff */ -#include +#include "easy.h" /* nothing in curl is fun without the easy stuff */ +#include "multi.h" typedef enum { CURLCLOSEPOLICY_NONE, /* first, never use this */ diff --git a/include/curl/multi.h b/include/curl/multi.h index b1ca28b2123e18e8b290841201bef721a968b6d7..d84bd36e509d3a3432d0e71db1b7b30fbf38c2ea 100644 --- a/include/curl/multi.h +++ b/include/curl/multi.h @@ -55,7 +55,7 @@ #include #endif -#include +#include "curl.h" typedef void CURLM;