Changeset 75740 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Nov 26, 2018 3:59:11 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 126941
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/HGCMThread.h
r75541 r75740 44 44 * or from HGCM. 45 45 * @param pMsgCore Pointer to just processed message. 46 */ 47 typedef DECLCALLBACK(void) HGCMMSGCALLBACK(int32_t result, HGCMMsgCore *pMsgCore); 46 * 47 * @return Restricted set of VBox status codes when guest call message: 48 * @retval VINF_SUCCESS on success 49 * @retval VERR_CANCELLED if the request was cancelled. 50 * @retval VERR_ALREADY_RESET if the VM is resetting. 51 * @retval VERR_NOT_AVAILABLE if HGCM has been disconnected from the VMMDev 52 * (shouldn't happen). 53 */ 54 typedef DECLCALLBACK(int) HGCMMSGCALLBACK(int32_t result, HGCMMsgCore *pMsgCore); 55 /** Pointer to a message completeion callback function. */ 48 56 typedef HGCMMSGCALLBACK *PHGCMMSGCALLBACK; 49 57
Note:
See TracChangeset
for help on using the changeset viewer.