Changeset 22344 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Aug 19, 2009 12:57:32 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMDevice.cpp
r22334 r22344 737 737 * @thread Try only do this in EMT... 738 738 */ 739 int pdmR3DevFindLun(PVM pVM, const char *pszDevice, unsigned iInstance, unsigned iLun, PP DMLUN *ppLun)739 int pdmR3DevFindLun(PVM pVM, const char *pszDevice, unsigned iInstance, unsigned iLun, PPPDMLUN ppLun) 740 740 { 741 741 /* … … 790 790 * @thread EMT 791 791 */ 792 VMMR3DECL(int) PDMR3DeviceAttach(PVM pVM, const char *pszDevice, unsigned iInstance, unsigned iLun, uint32_t fFlags, PP DMIBASE *ppBase)792 VMMR3DECL(int) PDMR3DeviceAttach(PVM pVM, const char *pszDevice, unsigned iInstance, unsigned iLun, uint32_t fFlags, PPPDMIBASE ppBase) 793 793 { 794 794 VM_ASSERT_EMT(pVM); … … 869 869 * @thread EMT 870 870 */ 871 VMMR3DECL(int) PDMR3DriverAttach(PVM pVM, const char *pszDevice, unsigned iInstance, unsigned iLun, uint32_t fFlags, PP DMIBASE *ppBase)871 VMMR3DECL(int) PDMR3DriverAttach(PVM pVM, const char *pszDevice, unsigned iInstance, unsigned iLun, uint32_t fFlags, PPPDMIBASE ppBase) 872 872 { 873 873 VM_ASSERT_EMT(pVM); … … 1034 1034 VMMR3DECL(int) PDMR3DriverReattach(PVM pVM, const char *pszDevice, unsigned iDevIns, unsigned iLun, 1035 1035 const char *pszDriver, unsigned iOccurance, uint32_t fFlags, 1036 PCFGMNODE pCfg, PPPDMIBASE *ppBase)1036 PCFGMNODE pCfg, PPPDMIBASE ppBase) 1037 1037 { 1038 1038 return VERR_NOT_IMPLEMENTED;
Note:
See TracChangeset
for help on using the changeset viewer.