using glew with VIsual Studio .NET 2003

Hi, I’d like to use glew with visual studio .net 2003. Can you tell me what project type I should generate?

Is main used?

A static or dynamic linked library.

Mikael

either.

Hi !

Sorry, I thought you meant type of project to build glew…

Normally you would choose a win32 application (if you choose a console application you will get a console window but it will still work).

Some libraries used for this assume you are using a main() function, but if you use a win32 project you will need a WinMain() function, but you can alsways call the main() function from your WinMain().

Mikael