VirtualBox

Changeset 35989 in vbox for trunk/include/VBox


Ignore:
Timestamp:
Feb 15, 2011 7:55:27 PM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
70060
Message:

Main/MouseImpl, Devices/VMMDev, pdmif: fixed a number of placed where absolute mouse positions were passed unsigned

Location:
trunk/include/VBox
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/VMMDev.h

    r35968 r35989  
    242242    uint32_t mouseFeatures;
    243243    /** Mouse x position. */
    244     uint32_t pointerXPos;
     244    int32_t pointerXPos;
    245245    /** Mouse y position. */
    246     uint32_t pointerYPos;
     246    int32_t pointerYPos;
    247247} VMMDevReqMouseStatus;
    248248AssertCompileSize(VMMDevReqMouseStatus, 24+12);
  • trunk/include/VBox/vmm/pdmifs.h

    r35560 r35989  
    19711971     * @param   pyAbs           Pointer of result value, can be NULL
    19721972     */
    1973     DECLR3CALLBACKMEMBER(int, pfnQueryAbsoluteMouse,(PPDMIVMMDEVPORT pInterface, uint32_t *pxAbs, uint32_t *pyAbs));
     1973    DECLR3CALLBACKMEMBER(int, pfnQueryAbsoluteMouse,(PPDMIVMMDEVPORT pInterface, int32_t *pxAbs, int32_t *pyAbs));
    19741974
    19751975    /**
     
    19811981     * @param   yAbs            New absolute Y position
    19821982     */
    1983     DECLR3CALLBACKMEMBER(int, pfnSetAbsoluteMouse,(PPDMIVMMDEVPORT pInterface, uint32_t xAbs, uint32_t yAbs));
     1983    DECLR3CALLBACKMEMBER(int, pfnSetAbsoluteMouse,(PPDMIVMMDEVPORT pInterface, int32_t xAbs, int32_t yAbs));
    19841984
    19851985    /**
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette