C1083: Cannot open include file: 'iasiodrv.h'

Hey Folks,

I just started using JUCE and C++ and I keep having this error pop-up

 fatal error C1083: Cannot open include file: 'iasiodrv.h': No such file or directory 

I’ve defined

#define JUCE_QUICKTIME 0 #define JUCE_ASIO 0
And that’s on top of all other includes. So what’s causing this, And is it possible to resolve it without hacking JUCE.

Oh yes 2 last notes:
Compiling with: Visual Studio 2008
Using amalgamated version.

Hope someone can help me out.

Thank you for your time, Xeross
Edit: Whoops wrong error code -_-.

The constructor and destructor must have the same name as the class. E.g. GUI::GUI() and GUI::~GUI()

Ye sorry shane, Accidentally posted the wrong error code.

Fixed it, The cpp file shouldn’t be included by VS but in a seperate file thats not linked to anything else. working now.