mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 04:13:35 +00:00
[NTVDM]: Code formatting and add a warning about the usage of callbacks.
svn path=/trunk/; revision=64147
This commit is contained in:
@@ -7,6 +7,14 @@
|
||||
* Hermes Belusca-Maito ([email protected])
|
||||
*/
|
||||
|
||||
/******************************************************************************\
|
||||
| WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING!
|
||||
|
|
||||
| Callbacks support supposes implicitely that the callbacks are used
|
||||
| in the SAME thread as the CPU thread, otherwise messing in parallel
|
||||
| with the CPU registers is 100% prone to bugs!!
|
||||
\******************************************************************************/
|
||||
|
||||
/* INCLUDES *******************************************************************/
|
||||
|
||||
#define NDEBUG
|
||||
|
||||
@@ -121,7 +121,7 @@ static VOID MouseGetPacket(PMOUSE_PACKET Packet)
|
||||
VOID MouseUpdatePosition(PCOORD NewPosition)
|
||||
{
|
||||
/* Update the counters */
|
||||
HorzCounter += ((NewPosition->X - Position.X) * WidthMm * Resolution) / WidthPixels;
|
||||
HorzCounter += ((NewPosition->X - Position.X) * WidthMm * Resolution) / WidthPixels;
|
||||
VertCounter += ((NewPosition->Y - Position.Y) * HeightMm * Resolution) / HeightPixels;
|
||||
|
||||
/* Update the position */
|
||||
|
||||
Reference in New Issue
Block a user