Changeset 50754 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Mar 12, 2014 5:43:09 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 92767
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmifs.h
r50686 r50754 633 633 /** Pointer to a display connector interface. */ 634 634 typedef struct PDMIDISPLAYCONNECTOR *PPDMIDISPLAYCONNECTOR; 635 struct VBOXCRCMDCTL; 636 typedef DECLCALLBACKPTR(void, PFNCRCTLCOMPLETION)(struct VBOXCRCMDCTL* pCmd, uint32_t cbCmd, int rc, void *pvCompletion); 635 637 /** 636 638 * Display connector interface (up). … … 750 752 * @thread The emulation thread. 751 753 */ 752 DECLR3CALLBACKMEMBER( int, pfnCrCmdNotifyCmds, (PPDMIDISPLAYCONNECTOR pInterface));753 754 /** 755 * Process the guest chromium co mmand.754 DECLR3CALLBACKMEMBER(void, pfnCrHgsmiCommandProcess, (PPDMIDISPLAYCONNECTOR pInterface, PVBOXVDMACMD_CHROMIUM_CMD pCmd, uint32_t cbCmd)); 755 756 /** 757 * Process the guest chromium control command. 756 758 * 757 759 * @param pInterface Pointer to this interface. … … 759 761 * @thread The emulation thread. 760 762 */ 761 DECLR3CALLBACKMEMBER(void, pfnCrHgsmiCo mmandProcess, (PPDMIDISPLAYCONNECTOR pInterface, PVBOXVDMACMD_CHROMIUM_CMD pCmd, uint32_t cbCmd));763 DECLR3CALLBACKMEMBER(void, pfnCrHgsmiControlProcess, (PPDMIDISPLAYCONNECTOR pInterface, PVBOXVDMACMD_CHROMIUM_CTL pCtl, uint32_t cbCtl)); 762 764 763 765 /** … … 768 770 * @thread The emulation thread. 769 771 */ 770 DECLR3CALLBACKMEMBER(void, pfnCrHgsmiControlProcess, (PPDMIDISPLAYCONNECTOR pInterface, PVBOXVDMACMD_CHROMIUM_CTL pCtl, uint32_t cbCtl)); 772 DECLR3CALLBACKMEMBER(int, pfnCrHgcmCtlSubmit, (PPDMIDISPLAYCONNECTOR pInterface, 773 struct VBOXCRCMDCTL* pCmd, uint32_t cbCmd, 774 PFNCRCTLCOMPLETION pfnCompletion, 775 void *pvCompletion)); 771 776 772 777 /** … … 3066 3071 DECLR3CALLBACKMEMBER(int, pfnCrHgsmiControlCompleteAsync, (PPDMIDISPLAYVBVACALLBACKS pInterface, 3067 3072 PVBOXVDMACMD_CHROMIUM_CTL pCmd, int rc)); 3073 3074 DECLR3CALLBACKMEMBER(int, pfnCrCtlSubmit, (PPDMIDISPLAYVBVACALLBACKS pInterface, 3075 struct VBOXCRCMDCTL* pCmd, uint32_t cbCmd, 3076 PFNCRCTLCOMPLETION pfnCompletion, 3077 void *pvCompletion)); 3068 3078 } PDMIDISPLAYVBVACALLBACKS; 3069 3079 /** PDMIDISPLAYVBVACALLBACKS */
Note:
See TracChangeset
for help on using the changeset viewer.