would be nice to have the current NUM lock status
Not such a small request, really, it’d involve a lot of research and testing on all the different platforms. And on some platforms it may not even be possible.
yes you are right, just for the beginning…
Windows:
bool SystemStats::GetCurrentNumLockState()
{
return GetKeyState( VK_NUMLOCK ) & 1 == 1;
};
