#ifndef ICCLIENT_TYPEDEFS_H #define ICCLIENT_TYPEDEFS_H #ifdef __cplusplus #include #endif #ifdef __EMSCRIPTEN__ #include typedef emscripten_fetch_t icclient_response; #else typedef struct { void *userData; char *data; size_t numBytes; } icclient_response; #endif #endif