Let us end the scourge of vanilla MinGW once and for all
This commit is contained in:
parent
e7a5c4bfac
commit
93f99b3bee
|
@ -25,6 +25,11 @@
|
||||||
#include <vssym32.h>
|
#include <vssym32.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
||||||
|
// if by some stroke of luck Go ever supports compiling with MSVC, this will need to change
|
||||||
|
#ifndef __MINGW64_VERSION_MAJOR
|
||||||
|
#error Sorry, you must use MinGW-w64 (http://mingw-w64.sourceforge.net/) to build package ui, as vanilla MinGW does not support Windows XP features (in 2014!).
|
||||||
|
#endif
|
||||||
|
|
||||||
// global messages unique to everything
|
// global messages unique to everything
|
||||||
enum {
|
enum {
|
||||||
msgRequest = WM_APP + 1, // + 1 just to be safe
|
msgRequest = WM_APP + 1, // + 1 just to be safe
|
||||||
|
|
Loading…
Reference in New Issue