Mouse Sensitivity - How to read this user setting

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

Hi,

I need to know how many mickeys does a mouse need to roll in order to
move one pixel under MS Windows. Could anyone, please, point me a way to
find it out?

Thank you all.
Paul.
 
Paul said:
Hi,

I need to know how many mickeys does a mouse need to roll in order to
move one pixel under MS Windows. Could anyone, please, point me a way to
find it out?

Thank you all.
Paul.
Wouldn't the number of mickey's required to move the cursor vary
depending on the acceleration settings?
 
As far as I know thats are right. But I don´t know how to get these
settings. Could anyone help me on this?
 
For instance, the function SystemParametersInfo solves my problem :-)

int m_nMouseSpeed(1);
SystemParametersInfo(SPI_GETMOUSESPEED,0,&m_nMouseSpeed,0);


Thank you all for the help.
 
Back
Top