ultimatepp/rainbow/Skeleton/Proc.cpp
kohait 2176288f38 rainbow: linux compile, no new code
git-svn-id: svn://ultimatepp.org/upp/trunk@3647 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2011-07-12 10:31:31 +00:00

24 lines
494 B
C++

#include <CtrlCore/CtrlCore.h>
#ifdef GUI_SKELETON
//#include <winnls.h>
//#include "imm.h"
NAMESPACE_UPP
#define LLOG(x) // LOG(x)
bool GetShift() { return false; }
bool GetCtrl() { return false; }
bool GetAlt() { return false; }
bool GetCapsLock() { return false; }
bool GetMouseLeft() { return false; }
bool GetMouseRight() { return false; }
bool GetMouseMiddle() { return false; }
Point GetMousePos() { return Point(0, 0); }
END_UPP_NAMESPACE
#endif