标签: c++ c winapi codeblocks dynamic-linking
我正在尝试在Code :: Blocks中使用windows.h函数SetPixel(),但它会给我一个链接错误 undefined reference to SetPixel@16
windows.h
SetPixel()
undefined reference to SetPixel@16
如何将库函数链接到项目?
答案 0 :(得分:2)
您需要将-lgdi32添加到链接器标志。
-lgdi32
答案 1 :(得分:1)
您需要链接gdi32库。这里有一个很好的答案,它将告诉你如何做到这一点: How do I link to a library with Code::Blocks?