In the EasyBMP.h header, the following code:
#ifdef _MSC_VER
// MS Visual Studio gives warnings when using
// fopen. But fopen_s is not going to work well
// with most compilers, and fopen_s uses different
// syntax than fopen. (i.e., a macro won't work)
// So, we'lll use this:
#define _CRT_SECURE_NO_DEPRECATE
#endif
should be changed to this:
#ifdef _MSC_VER
// MS Visual...
2007-02-22 18:25:16 UTC in EasyBMP Cross-Platform Bitmap Library