Changeset 56431 in vbox for trunk/src/VBox/Additions/common/VBoxVideo
- Timestamp:
- Jun 15, 2015 1:50:23 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 101034
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxVideo/Modesetting.cpp
r56378 r56431 379 379 return (uint16_t)u32Flags; 380 380 } 381 382 383 /**384 * Query the mouse cursor flags VBVA_MOUSE_CURSOR_*.385 *386 * @returns The mask of VBVA_MOUSE_CURSOR_* flags or 0 if host does not support the request.387 * @param pCtx the context containing the heap to use388 */389 RTDECL(uint32_t) VBoxHGSMIGetMouseCursorFlags(PHGSMIGUESTCOMMANDCONTEXT pCtx)390 {391 uint32_t u32Flags = 0;392 int rc = VBoxQueryConfHGSMIDef(pCtx, VBOX_VBVA_CONF32_MOUSE_CURSOR, 0, &u32Flags);393 LogFunc(("u32Flags = 0x%x rc %Rrc\n", u32Flags, rc));394 if (RT_FAILURE(rc))395 u32Flags = 0;396 return u32Flags;397 }
Note:
See TracChangeset
for help on using the changeset viewer.