BlockInput...
-
hallo alle miteiander ..
wie bekommt man die block input datei am laufen - so das maus und tastertur abgestellt werden ???? so?
#include <cstdlib> #include <iostream> using namespace std; int main() { BlockInput(true); Sleep(5); BlockInput(flase); return (0); }
aber was feht noch auser die include?
ps: lib. user32.lib ist drin
-
msdn
-
?
-
@t Windei 1. das heist "false"
2. : es geht so:
#include <cstdlib> #include <iostream> #include <windows.h> #include <winable.h> using namespace std; int main() { BlockInput(true); Sleep(5000); BlockInput(false); return (0); }
MTF: poltergeist
-
Danke!!!!