All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
CurlHelpers.h
1 #pragma once
2 
3 #include <curl.h>
4 #include "Types.h"
5 
6 #define CHECK_CURL_E(x) \
7  if(x != CURLE_OK) \
8  { \
9  Eegeo_ASSERT(false, "CURL_E Error: %d", x); \
10  }
11 
12 #define CHECK_CURL_M(x) \
13  if(x != CURLM_OK) \
14  { \
15  Eegeo_ASSERT(false, "CURL_M Error: %d", x); \
16  }
17 
18 #define CHECK_UV(x) \
19  if(x < 0) \
20  { \
21  Eegeo_ASSERT(false, "UV error name: %s", uv_err_name(x)); \
22  }