Creating Sub folder
C / C++ / MFC
22
Posts
4
Posters
0
Views
1
Watching
-
You need to download latest platform SDK. If its already there. Update include directories settings for your IDE, to point to updated SDK.
Prasad Notifier using ATL | Operator new[],delete[][^]
-
In addition to my previous reply. Mentioned API's are available with IE version 6 onwards. Make sure sure it is present on your machine. And to compile youe code , your need to update IE version in your app, too.
#ifdef _WIN32_IE
#undef _WIN32_IE
#endif
#define _WIN32_IE 0x0601Use above line of code in your application. Before including concern API file.
Prasad Notifier using ATL | Operator new[],delete[][^]