Changeset 49420 in vbox for trunk/include/VBox
- Timestamp:
- Nov 8, 2013 3:54:02 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 90501
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmifs.h
r47829 r49420 630 630 typedef struct VBOXVDMACMD_CHROMIUM_CTL *PVBOXVDMACMD_CHROMIUM_CTL; /* <- chromium [hgsmi] command */ 631 631 632 632 633 /** Pointer to a display connector interface. */ 633 634 typedef struct PDMIDISPLAYCONNECTOR *PPDMIDISPLAYCONNECTOR; … … 735 736 * @param pInterface Pointer to this interface. 736 737 * @param pCmd Video HW Acceleration Command to be processed. 737 * @thread The emulation thread. 738 */ 739 DECLR3CALLBACKMEMBER(void, pfnVHWACommandProcess, (PPDMIDISPLAYCONNECTOR pInterface, PVBOXVHWACMD pCmd)); 738 * @returns VINF_SUCCESS - command is completed, 739 * VINF_CALLBACK_RETURN - command will by asynchronously completed via complete callback 740 * VERR_INVALID_STATE - the command could not be processed (most likely because the framebuffer was disconnected) - the post should be retried later 741 * @thread The emulation thread. 742 */ 743 DECLR3CALLBACKMEMBER(int, pfnVHWACommandProcess, (PPDMIDISPLAYCONNECTOR pInterface, PVBOXVHWACMD pCmd)); 740 744 741 745 /** … … 756 760 */ 757 761 DECLR3CALLBACKMEMBER(void, pfnCrHgsmiControlProcess, (PPDMIDISPLAYCONNECTOR pInterface, PVBOXVDMACMD_CHROMIUM_CTL pCtl, uint32_t cbCtl)); 758 759 762 760 763 /**
Note:
See TracChangeset
for help on using the changeset viewer.