* Add strnpy/strcpy_s wrapper to compile ProfileLogHandler.cpp
[matthijs/ABM2.git] / ABM2 / porting.h
1 #ifndef WIN32
2         #define vsprintf_s vsnprintf
3         #define sprintf_s snprintf
4         #define strcpy_s(dst, size, src) strncpy(dst, src, size)
5         #define ZeroMemory(buf, size) memset(buf, 0, size)
6 #endif // !WIN32