vsnprintf 在2008上的错误
From: xuyibo.net Date: 2007-11-23 06:30 PM
error C3163: '_vsnprintf': attributes inconsistent with previous declaration
D:\\dev\\env2008\\sdk\\crt\\inc\\stdio.h(350) : see declaration of '_vsnprintf'
处理办法:
将代码中的#define vsnprintf _vsnprintf修改为
// VC2008 Orcas has this already defined.
#if (_MSC_VER < 1500)
#define vsnprintf _vsnprintf
#endif