Changeset 77130 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Feb 1, 2019 4:55:20 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmifs.h
r76585 r77130 715 715 #endif 716 716 717 /** @name Flags for PDMIDISPLAYCONNECTOR::pfnVBVAReportCursorPosition. 718 * @{ */ 719 /** Is the data in the report valid? */ 720 #define VBVA_CURSOR_VALID_DATA RT_BIT(0) 721 /** Is the cursor position reported relative to a particular guest screen? */ 722 #define VBVA_CURSOR_SCREEN_RELATIVE RT_BIT(1) 723 /** @} */ 717 724 718 725 /** Pointer to a 2D graphics acceleration command. */ … … 1049 1056 * 1050 1057 * @param pInterface Pointer to this interface. 1051 * @param f Data Does this report contain valid X and Y data or is1052 * it only reporting interface support?1058 * @param fFlags VBVA_CURSOR_* 1059 * @param uScreenId The screen to which X and Y are relative if VBVA_CURSOR_SCREEN_RELATIVE is set. 1053 1060 * @param x Cursor X offset. 1054 1061 * @param y Cursor Y offset. 1055 1062 * @thread The emulation thread. 1056 1063 */ 1057 DECLR3CALLBACKMEMBER(void, pfnVBVAReportCursorPosition,(PPDMIDISPLAYCONNECTOR pInterface, bool fData, uint32_t x, uint32_t y));1064 DECLR3CALLBACKMEMBER(void, pfnVBVAReportCursorPosition,(PPDMIDISPLAYCONNECTOR pInterface, uint32_t fFlags, uint32_t uScreen, uint32_t x, uint32_t y)); 1058 1065 } PDMIDISPLAYCONNECTOR; 1059 1066 /** PDMIDISPLAYCONNECTOR interface ID. */ 1060 #define PDMIDISPLAYCONNECTOR_IID " e648dac6-c918-11e7-8be6-a317e6b79645"1067 #define PDMIDISPLAYCONNECTOR_IID "f2a4c9fc-2613-11e9-bc48-bf934e641fc0" 1061 1068 1062 1069
Note:
See TracChangeset
for help on using the changeset viewer.