in reply to Re: installing Tk for strawberry
in thread installing Tk for strawberry
Rearranging the order in that file should fix the problem:#ifndef _WIN32_IE #define _WIN32_IE 0x0300 #endif #include <commctrl.h>
In the latest Tk devel version, they've taken a different approach - which should also fix the problem (as was suggested earlier):#include <commctrl.h> #ifndef _WIN32_IE #define _WIN32_IE 0x0300 #endif
Cheers,#if !defined( _WIN32_IE) && !defined(__MINGW64_VERSION_MAJOR) #define _WIN32_IE 0x0300 #endif #include <commctrl.h>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: installing Tk for strawberry
by Anonymous Monk on Apr 07, 2016 at 15:17 UTC | |
by marto (Cardinal) on Apr 07, 2016 at 16:22 UTC |