Build Win32 GUI in Eclipse Instead of Console App

Using Eclipse, I’m trying out this tutorial to learn OpenGL, and I get 3 compiler errors:

Undefined reference to setpixelformat@12
Undefined reference to swapbuffers@4
Undefined reference to choosepixelformat@8

I have opengl32 and glu32 linked, so that’s not the problem.

In fact, I’ve found the solution in two different areas:
http://www.gamedev.net/topic/97214-nehe-tutorials-and-devc/
http://www.gamedev.net/topic/272486-glauxh-yes-i-know/

These sites suggest that I need to make sure I’m building a Win32 GUI rather than a Win32 console. But when I create my project in Eclipse, I’m not given either of those options. Under File->New->Project, I only have options for a C project a C++ project and a Makefile project with existing code.

I can’t find the option in my project properties either.

How would I build the GUI rather than build a console app?

Those functions are in GDI32.dll. Import the gdi32.a library (-lgdi32)

Oh bless you so much!