mirror of
https://github.com/SFML/SFML.git
synced 2024-11-28 22:31:09 +08:00
Fixed a Win32 constant missing after upgrading to gcc 4.4 headers
git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/trunk@1407 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
parent
cdc1346612
commit
b3d3082fc4
@ -36,13 +36,16 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
// Old versions of MinGW lack the definition of XBUTTON1 and XBUTTON2
|
// MinGW lacks the definition of some Win32 constants
|
||||||
#ifndef XBUTTON1
|
#ifndef XBUTTON1
|
||||||
#define XBUTTON1 0x0001
|
#define XBUTTON1 0x0001
|
||||||
#endif
|
#endif
|
||||||
#ifndef XBUTTON2
|
#ifndef XBUTTON2
|
||||||
#define XBUTTON2 0x0002
|
#define XBUTTON2 0x0002
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef MAPVK_VK_TO_VSC
|
||||||
|
#define MAPVK_VK_TO_VSC (0)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
namespace sf
|
namespace sf
|
||||||
|
Loading…
Reference in New Issue
Block a user