Go to the answer of the question
I'm trying to get my mouse speed, but when I call the function SystemParametersInfoA with parameter SPI_GETMOUSE
it sets the target array to {0,0,0}
which I think its not supposed to happen.
Example code:
int IntArr[3];
SystemParametersInfoA(SPI_GETMOUSE, 0, &IntArr, 0);
I tried changing my mouse sensitivity (from the control panel) but that didn't work either.
Does this function is supposed to return those zeros or thats my fault?
The documentation says:
At first I did tought that these two mouse threshold values were related to my mouse cursor sensitivty.
After a deeper search in the docs for mouse_event, I found out that in the remarks section it says:
Which basically means that these 3 values that I got in the destination array IntArr wasn't anything to do with sensitivity, but rather these 2 mouse threshold values and the "Enhance pointer precission" which was either 0 or 1 indicating it turned on or off, mine was disabled thats why I got all zeros.
In order to get the mouse sensitivity you have to use SystemParametersInfoA function with the
SPI_GETMOUSESPEED
parameter as uiAction instead.