Changeset 51217 in vbox for trunk/include/VBox/vmm
- Timestamp:
- May 8, 2014 5:42:50 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 93624
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmifs.h
r51121 r51217 641 641 typedef struct VBVAINFOVIEW *PVBVAINFOVIEW; 642 642 typedef struct VBVAHOSTFLAGS *PVBVAHOSTFLAGS; 643 typedef struct VBOXVDMACMD_CHROMIUM_CMD *PVBOXVDMACMD_CHROMIUM_CMD; /* <- chromium [hgsmi] command */644 typedef struct VBOXVDMACMD_CHROMIUM_CTL *PVBOXVDMACMD_CHROMIUM_CTL; /* <- chromium [hgsmi] command */643 struct VBOXVDMACMD_CHROMIUM_CMD; /* <- chromium [hgsmi] command */ 644 struct VBOXVDMACMD_CHROMIUM_CTL; /* <- chromium [hgsmi] command */ 645 645 646 646 … … 766 766 * @thread The emulation thread. 767 767 */ 768 DECLR3CALLBACKMEMBER(void, pfnCrHgsmiCommandProcess, (PPDMIDISPLAYCONNECTOR pInterface, PVBOXVDMACMD_CHROMIUM_CMDpCmd, uint32_t cbCmd));768 DECLR3CALLBACKMEMBER(void, pfnCrHgsmiCommandProcess, (PPDMIDISPLAYCONNECTOR pInterface, struct VBOXVDMACMD_CHROMIUM_CMD* pCmd, uint32_t cbCmd)); 769 769 770 770 /** … … 775 775 * @thread The emulation thread. 776 776 */ 777 DECLR3CALLBACKMEMBER(void, pfnCrHgsmiControlProcess, (PPDMIDISPLAYCONNECTOR pInterface, PVBOXVDMACMD_CHROMIUM_CTLpCtl, uint32_t cbCtl));777 DECLR3CALLBACKMEMBER(void, pfnCrHgsmiControlProcess, (PPDMIDISPLAYCONNECTOR pInterface, struct VBOXVDMACMD_CHROMIUM_CTL* pCtl, uint32_t cbCtl)); 778 778 779 779 /** … … 3090 3090 3091 3091 DECLR3CALLBACKMEMBER(int, pfnCrHgsmiCommandCompleteAsync, (PPDMIDISPLAYVBVACALLBACKS pInterface, 3092 PVBOXVDMACMD_CHROMIUM_CMDpCmd, int rc));3092 struct VBOXVDMACMD_CHROMIUM_CMD* pCmd, int rc)); 3093 3093 3094 3094 DECLR3CALLBACKMEMBER(int, pfnCrHgsmiControlCompleteAsync, (PPDMIDISPLAYVBVACALLBACKS pInterface, 3095 PVBOXVDMACMD_CHROMIUM_CTLpCmd, int rc));3095 struct VBOXVDMACMD_CHROMIUM_CTL* pCmd, int rc)); 3096 3096 3097 3097 DECLR3CALLBACKMEMBER(int, pfnCrCtlSubmit, (PPDMIDISPLAYVBVACALLBACKS pInterface,
Note:
See TracChangeset
for help on using the changeset viewer.