无法解析的外部符号

当在C++中引用C中定义的全局变量

直接使用

extern OSVERSIONINFOEX g_osvi;

可能会出现无法解析的外部符号


#ifdef __cplusplus
extern "C"
{
#endif

    OSVERSIONINFOEX g_osvi;

#ifdef __cplusplus
}
#endif


可能会解决问题

你可能感兴趣的:(无法解析,外部符号)