Changeset 75771 in vbox for trunk/include/VBox
- Timestamp:
- Nov 27, 2018 12:53:36 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 126973
- Location:
- trunk/include/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VMMDev.h
r75585 r75771 332 332 * @internal Host only. */ 333 333 #define VMMDEV_REQUESTOR_LEGACY UINT32_MAX 334 /** Lowest conceivable trust level, for error situations of getters. 335 * @internal Host only. */ 336 #define VMMDEV_REQUESTOR_LOWEST ( VMMDEV_REQUESTOR_TRUST_UNTRUSTED | VMMDEV_REQUESTOR_USER_DEVICE \ 337 | VMMDEV_REQUESTOR_CON_NO | VMMDEV_REQUESTOR_USERMODE \ 338 | VMMDEV_REQUESTOR_USR_GUEST) 334 339 /** Used on the host to check whether a requestor value is present or not. */ 335 340 #define VMMDEV_REQUESTOR_IS_PRESENT(a_fRequestor) ((a_fRequestor) != VMMDEV_REQUESTOR_LEGACY) -
trunk/include/VBox/hgcmsvc.h
r75769 r75771 115 115 * Retrieves the VMMDevRequestHeader::fRequestor value. 116 116 * 117 * @returns The field value, 0 if invalid call. 117 * @returns The field value, VMMDEV_REQUESTOR_LEGACY if not supported by the 118 * guest, VMMDEV_REQUESTOR_LOWEST if invalid call. 118 119 * @param hCall The call we're checking up on. 119 120 */ -
trunk/include/VBox/vmm/pdmifs.h
r75769 r75771 2087 2087 * Gets the VMMDevRequestHeader::fRequestor value for @a pCmd. 2088 2088 * 2089 * @returns The fRequestor value, 0 if invalid parameters. 2089 * @returns The fRequestor value, VMMDEV_REQUESTOR_LEGACY if guest does not 2090 * support it, VMMDEV_REQUESTOR_LOWEST if invalid parameters. 2090 2091 * @param pInterface Pointer to this interface. 2091 2092 * @param pCmd The command we're in checking on.
Note:
See TracChangeset
for help on using the changeset viewer.