src_generated/ua_config.h
Go to the documentation of this file.
00001 #ifndef UA_CONFIG_H_
00002 #define UA_CONFIG_H_
00003 
00004 /* Buid options and configuration (set by cmake) */
00005 
00006 #define UA_LOGLEVEL 300
00007 /* #undef UA_MULTITHREADING */
00008 
00009 /* Function Export */
00010 #ifdef _WIN32
00011 #  ifdef UA_DYNAMIC_LINKING
00012 #    ifdef __GNUC__
00013 #      define UA_EXPORT __attribute__ ((dllexport))
00014 #    else
00015 #      define UA_EXPORT __declspec(dllexport)
00016 #    endif
00017 #  else
00018 #    ifdef __GNUC__
00019 #      define UA_EXPORT __attribute__ ((dllexport))
00020 #    else
00021 #      define UA_EXPORT __declspec(dllimport)
00022 #    endif
00023 #  endif
00024 #else
00025 #  if __GNUC__ || __clang__
00026 #    define UA_EXPORT __attribute__ ((visibility ("default")))
00027 #  else
00028 #    define UA_EXPORT
00029 #  endif
00030 #endif
00031 
00032 #endif /* UA_CONFIG_H_ */