0
点赞
收藏
分享

微信扫一扫

无法解析的外部符号 __imp__timeGetTime@0

error LNK2019: 无法解析的外部符号 __imp__timeGetTime@0,该符号在函数 "public: void __thiscall Ccount_sizeView::OnCount(void)" (?OnCount@Ccount_sizeView@@QAEXXZ) 中被引用

原因分析:没有加入相应的链接库,winmm.lib.

解决办法:根据错误提示找到相应位置,然后加入以下这句话就可以了

 #pragma comment(lib, "winmm.lib ")


举报

相关推荐

0 条评论