102//warning C4244: 'return': conversion from 'double' to 'float', possible loss of data
103//warning C4244: 'return': conversion from '__int64' to 'long', possible loss of data (compiling source file connection_monitor_core.cpp)
104#pragma warning(disable:4244)
105
106// warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
107#pragma warning(disable:4267)
108
109// warning C4800: 'unsigned int': forcing value to bool 'true' or 'false' (performance warning)
110#pragma warning(disable:4800)
111
112// warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.