Changeset 70596 in vbox for trunk/include
- Timestamp:
- Jan 15, 2018 10:46:29 PM (7 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/Graphics/VBoxVideoHost3D.h
r69686 r70596 150 150 union 151 151 { 152 void (*pfnInternal)(void);152 PFNRT pfnInternal; 153 153 void *pvInternal; 154 154 } u; -
trunk/include/VBox/vmm/pdmifs.h
r70075 r70596 736 736 typedef struct PDMIDISPLAYCONNECTOR *PPDMIDISPLAYCONNECTOR; 737 737 struct VBOXCRCMDCTL; 738 typedef DECLCALLBACKPTR(void, PFNCRCTLCOMPLETION)(struct VBOXCRCMDCTL* pCmd, uint32_t cbCmd, int rc, void *pvCompletion); 738 typedef DECLCALLBACK(void) FNCRCTLCOMPLETION(struct VBOXCRCMDCTL *pCmd, uint32_t cbCmd, int rc, void *pvCompletion); 739 typedef FNCRCTLCOMPLETION *PFNCRCTLCOMPLETION; 740 739 741 /** 740 742 * Display connector interface (up). … … 2267 2269 * completed. 2268 2270 */ 2269 DECLR3CALLBACKMEMBER(int, pfnVHWACommandCompleteAsync, (PPDMIDISPLAYVBVACALLBACKS pInterface, 2270 PVBOXVHWACMD pCmd)); 2271 2272 DECLR3CALLBACKMEMBER(int, pfnCrHgsmiCommandCompleteAsync, (PPDMIDISPLAYVBVACALLBACKS pInterface, 2273 struct VBOXVDMACMD_CHROMIUM_CMD* pCmd, int rc)); 2274 2275 DECLR3CALLBACKMEMBER(int, pfnCrHgsmiControlCompleteAsync, (PPDMIDISPLAYVBVACALLBACKS pInterface, 2276 struct VBOXVDMACMD_CHROMIUM_CTL* pCmd, int rc)); 2277 2278 DECLR3CALLBACKMEMBER(int, pfnCrCtlSubmit, (PPDMIDISPLAYVBVACALLBACKS pInterface, 2279 struct VBOXCRCMDCTL* pCmd, uint32_t cbCmd, 2280 PFNCRCTLCOMPLETION pfnCompletion, 2281 void *pvCompletion)); 2282 2283 DECLR3CALLBACKMEMBER(int, pfnCrCtlSubmitSync, (PPDMIDISPLAYVBVACALLBACKS pInterface, 2284 struct VBOXCRCMDCTL* pCmd, uint32_t cbCmd)); 2271 DECLR3CALLBACKMEMBER(int, pfnVHWACommandCompleteAsync,(PPDMIDISPLAYVBVACALLBACKS pInterface, PVBOXVHWACMD pCmd)); 2272 2273 DECLR3CALLBACKMEMBER(int, pfnCrHgsmiCommandCompleteAsync,(PPDMIDISPLAYVBVACALLBACKS pInterface, 2274 struct VBOXVDMACMD_CHROMIUM_CMD *pCmd, int rc)); 2275 2276 DECLR3CALLBACKMEMBER(int, pfnCrHgsmiControlCompleteAsync,(PPDMIDISPLAYVBVACALLBACKS pInterface, 2277 struct VBOXVDMACMD_CHROMIUM_CTL *pCmd, int rc)); 2278 2279 DECLR3CALLBACKMEMBER(int, pfnCrCtlSubmit,(PPDMIDISPLAYVBVACALLBACKS pInterface, struct VBOXCRCMDCTL *pCmd, uint32_t cbCmd, 2280 PFNCRCTLCOMPLETION pfnCompletion, void *pvCompletion)); 2281 2282 DECLR3CALLBACKMEMBER(int, pfnCrCtlSubmitSync,(PPDMIDISPLAYVBVACALLBACKS pInterface, 2283 struct VBOXCRCMDCTL *pCmd, uint32_t cbCmd)); 2285 2284 } PDMIDISPLAYVBVACALLBACKS; 2286 2285 /** PDMIDISPLAYVBVACALLBACKS */
Note:
See TracChangeset
for help on using the changeset viewer.