ReadConsoleInput(hInputput, &InputRecord, 1, &Events);
in the line above I understand what everything does except for the number 1, Can someone tell me what it does?
This is a discussion on Console Functions within the C++ Programming forums, part of the General Programming Boards category; ReadConsoleInput(hInputput, &InputRecord, 1, &Events); in the line above I understand what everything does except for the number 1, Can someone ...
ReadConsoleInput(hInputput, &InputRecord, 1, &Events);
in the line above I understand what everything does except for the number 1, Can someone tell me what it does?
Give me a bad reputation!!!
The number of inputs to read. If you had an array of INPUT_RECORDS then you can read more than one input per call.
zen