error C3163: '_vsnprintf': attributes inconsistent with previous declaration
D://dev//env2008//sdk//crt//inc//stdio.h(350) : see declaration of '_vsnprintf'
处理办法:
将代码中的#define vsnprintf _vsnprintf修改为
// in file:as_msvc.h
// VC2008 Orcas has this already defined.
#if (_MSC_VER #define vsnprintf _vsnprintf
#endif