Jeremy White wrote:
I've added support for the Win32 AnimateWindow() API, as requested by
tracker 1266930:
https://sourceforge.net/tracker/index.php?func=detail&aid=1266930&group_id=16572&atid=366572
Now, as well as $win->Show(), $win->Hide() you can use $win->Animate().

I had problems building under mingw - I had to set:

#define WINVER 0x0501

in windef.h for it to build - after that, all tests pass, and the example runs (nice BTW!).

The MS headers set WINVER if it's not already set (in the case of the headers I'm using it gets set to Ox501). MinGW headers don't do this. It's probably a good idea for us to set it anyway, so I'll add
  #define WINVER 0x0501
to the start of GUI.h

Thanks for the feedback.

Rob.

Reply via email to