Tzu ng
Tzu ng

Reputation: 9244

Commctl.h missing

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 ?

Upvotes: 0

Views: 347

Answers (1)

Brian R. Bondy
Brian R. Bondy

Reputation: 347276

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

Upvotes: 1

Related Questions