Changeset 37781 in vbox for trunk/include
- Timestamp:
- Jul 5, 2011 1:35:29 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmifs.h
r37687 r37781 2888 2888 * fi 2889 2889 */ 2890 DECLR3CALLBACKMEMBER(int, pfnVHWACommandCompleteAsynch, (PPDMIDISPLAYVBVACALLBACKS pInterface, PVBOXVHWACMD pCmd)); 2891 2892 DECLR3CALLBACKMEMBER(int, pfnCrHgsmiCommandCompleteAsync, (PPDMIDISPLAYVBVACALLBACKS pInterface, PVBOXVDMACMD_CHROMIUM_CMD pCmd, int rc)); 2893 2894 DECLR3CALLBACKMEMBER(int, pfnCrHgsmiControlCompleteAsync, (PPDMIDISPLAYVBVACALLBACKS pInterface, PVBOXVDMACMD_CHROMIUM_CTL pCmd, int rc)); 2890 DECLR3CALLBACKMEMBER(int, pfnVHWACommandCompleteAsynch, (PPDMIDISPLAYVBVACALLBACKS pInterface, 2891 PVBOXVHWACMD pCmd)); 2892 2893 DECLR3CALLBACKMEMBER(int, pfnCrHgsmiCommandCompleteAsync, (PPDMIDISPLAYVBVACALLBACKS pInterface, 2894 PVBOXVDMACMD_CHROMIUM_CMD pCmd, int rc)); 2895 2896 DECLR3CALLBACKMEMBER(int, pfnCrHgsmiControlCompleteAsync, (PPDMIDISPLAYVBVACALLBACKS pInterface, 2897 PVBOXVDMACMD_CHROMIUM_CTL pCmd, int rc)); 2895 2898 } PDMIDISPLAYVBVACALLBACKS; 2896 2899 /** PDMIDISPLAYVBVACALLBACKS */ 2897 #define PDMIDISPLAYVBVACALLBACKS_IID "b78b81d2-c821-4e66-96ff-dbafa76343a5" 2900 #define PDMIDISPLAYVBVACALLBACKS_IID "b78b81d2-c821-4e66-96ff-dbafa76343a5" 2901 2902 /** Pointer to a PCI raw connector interface. */ 2903 typedef struct PDMIPCIRAWCONNECTOR *PPDMIPCIRAWCONNECTOR; 2904 /** 2905 * PCI raw connector interface (up). 2906 */ 2907 typedef struct PDMIPCIRAWCONNECTOR 2908 { 2909 2910 /** 2911 * 2912 */ 2913 DECLR3CALLBACKMEMBER(int, pfnDeviceConstructComplete, (PPDMIPCIRAWCONNECTOR pInterface, const char *pcszName, 2914 uint32_t uHostPciAddress, uint32_t uGuestPciAddress, 2915 int rc)); 2916 2917 } PDMIPCIRAWCONNECTOR; 2918 /** PDMIPCIRAWCONNECTOR interface ID. */ 2919 #define PDMIPCIRAWCONNECTOR_IID "14aa9c6c-8869-4782-9dfc-910071a6aebf" 2898 2920 2899 2921 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.