Changeset 33690 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Nov 2, 2010 2:02:19 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/BusAssignmentManager.h
r33687 r33690 49 49 if (iBus < a.iBus) 50 50 return true; 51 51 52 52 if (iBus > a.iBus) 53 53 return false; … … 55 55 if (iDevice < a.iDevice) 56 56 return true; 57 57 58 58 if (iDevice > a.iDevice) 59 59 return false; … … 61 61 if (iFn < a.iFn) 62 62 return true; 63 63 64 64 if (iFn > a.iFn) 65 65 return false; … … 110 110 return assignPciDevice(pszDevName, pCfg, Address, false); 111 111 } 112 virtual bool findPciAddress(const char* pszDevName, int iInstance, PciBusAddress& Address); 112 113 }; 113 114
Note:
See TracChangeset
for help on using the changeset viewer.