Commit b89b2978 authored by hybrid's avatar hybrid

Make sure some win32 defines exist.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@3581 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 9bf2410e
...@@ -18,6 +18,10 @@ ...@@ -18,6 +18,10 @@
#include <mmsystem.h> // For JOYCAPS #include <mmsystem.h> // For JOYCAPS
#include <Windowsx.h> #include <Windowsx.h>
#endif #endif
#if !defined(GET_X_LPARAM)
#define GET_X_LPARAM(lp) ((int)(short)LOWORD(lp))
#define GET_Y_LPARAM(lp) ((int)(short)HIWORD(lp))
#endif
namespace irr namespace irr
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment