undefined reference to `__imp_SetPixel'

纵然是瞬间 提交于 2021-01-29 09:27:44

问题


main.cpp:

#include <iostream>
#include <cmath>
#include <windows.h>
using namespace std;
int main(){
SetPixel(NULL, 0, 0, RGB(255, 255, 255));
    return 0;
}

errors:
main.cpp|6|undefined reference to `__imp_SetPixel`
ld returned 1 exit status
linked libraries: libgdi32.a
and Gdi32.dll in execution directory
compiler: GNU GCC
I'm using codeblocks

来源:https://stackoverflow.com/questions/64048724/undefined-reference-to-imp-setpixel

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!