tags:

views:

34

answers:

1

I'm trying to include : #include <commctl.h> into my win32 API program; however, it looks like it does not exist.

What is the problem ?

+1  A: 

I think you mean CommCtrl.h?

#include <commctl.h>

And it should be located in your platform SDK folder or visual studio includes.

Example:

C:\Program Files\Microsoft SDKs\Windows\v6.0A\Include

Brian R. Bondy