ThingWorx C SDK
cfuconfig.h
1 #ifndef TW_C_SDK_CONFIG_H
2 
3 #define TW_C_SDK_CONFIG_H
4 #define HAVE_STRNCASECMP
5 #define HAVE_TWX_THREAD_H
6 #define HAVE_SNPRINTF
7 #define HAVE_VSNPRINTF
8 
9 #ifdef WIN32
10 #if _MSC_VER < 1900
11 #define snprintf _snprintf
12 #endif
13 #else
14 #define HAVE_STRINGS_H
15 #endif
16 
17 #endif