CPP obtiene la tecla de tecla solo en consola
HWND hwnd = GetConsoleWindow();
if (GetForegroundWindow() == hwnd){
if((GetKeyState(VK_SPACE) & 0x8000) != 0)){
// DO YOUR STUFF HERE
}
}
Rich Rattlesnake