Question

I'm trying to use windows.h function SetPixel() in Code::Blocks but it gives me a linking error undefined reference to SetPixel@16

How could I link the library functions to the project ?

Was it helpful?

Solution 2

You need to link the gdi32 library. There's an good answer here on SO that will tell you how to do this: How do I link to a library with Code::Blocks?

OTHER TIPS

You need to add -lgdi32 to the linker flags.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top