Changeset 75769 in vbox for trunk/include/VBox
- Timestamp:
- Nov 27, 2018 12:30:00 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 126971
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/hgcmsvc.h
r75747 r75769 69 69 * 5.1->6.1 Because pfnCall got a new parameter. Also new helpers. (VBox 6.0) 70 70 * 6.1->6.2 Because pfnCallComplete starts returning a status code (VBox 6.0). 71 * 6.2->6.3 Because pfnGetRequestor was added (VBox 6.0). 71 72 */ 72 73 #define VBOX_HGCM_SVC_VERSION_MAJOR (0x0006) 73 #define VBOX_HGCM_SVC_VERSION_MINOR (0x000 2)74 #define VBOX_HGCM_SVC_VERSION_MINOR (0x0003) 74 75 #define VBOX_HGCM_SVC_VERSION ((VBOX_HGCM_SVC_VERSION_MAJOR << 16) + VBOX_HGCM_SVC_VERSION_MINOR) 75 76 … … 110 111 /** Access to DBGFR3InfoDeregisterExternal. */ 111 112 DECLR3CALLBACKMEMBER(int, pfnInfoDeregister,(void *pvInstance, const char *pszName)); 113 114 /** 115 * Retrieves the VMMDevRequestHeader::fRequestor value. 116 * 117 * @returns The field value, 0 if invalid call. 118 * @param hCall The call we're checking up on. 119 */ 120 DECLR3CALLBACKMEMBER(uint32_t, pfnGetRequestor, (VBOXHGCMCALLHANDLE hCall)); 112 121 113 122 } VBOXHGCMSVCHELPERS; -
trunk/include/VBox/vmm/pdmifs.h
r75740 r75769 2084 2084 DECLR3CALLBACKMEMBER(bool, pfnIsCmdRestored,(PPDMIHGCMPORT pInterface, PVBOXHGCMCMD pCmd)); 2085 2085 2086 /** 2087 * Gets the VMMDevRequestHeader::fRequestor value for @a pCmd. 2088 * 2089 * @returns The fRequestor value, 0 if invalid parameters. 2090 * @param pInterface Pointer to this interface. 2091 * @param pCmd The command we're in checking on. 2092 */ 2093 DECLR3CALLBACKMEMBER(uint32_t, pfnGetRequestor,(PPDMIHGCMPORT pInterface, PVBOXHGCMCMD pCmd)); 2094 2086 2095 } PDMIHGCMPORT; 2087 2096 /** PDMIHGCMPORT interface ID. */ 2088 # define PDMIHGCMPORT_IID " e82b1709-c245-4ccc-1611-0e6d50d93cbc"2097 # define PDMIHGCMPORT_IID "0864e1c5-659b-40c8-2c97-994e2983038e" 2089 2098 2090 2099
Note:
See TracChangeset
for help on using the changeset viewer.