Changeset 28825 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Apr 27, 2010 1:50:46 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60741
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/Global.h
r28800 r28825 64 64 const NetworkAdapterType_T networkAdapterType; 65 65 const uint32_t numSerialEnabled; 66 const StorageControllerType_T storageControllerType; 66 const StorageControllerType_T dvdStorageControllerType; 67 const StorageBus_T dvdStorageBusType; 68 const StorageControllerType_T hdStorageControllerType; 69 const StorageBus_T hdStorageBusType; 67 70 }; 68 71 -
trunk/src/VBox/Main/include/GuestOSTypeImpl.h
r28800 r28825 55 55 uint32_t aRAMSize, uint32_t aVRAMSize, uint32_t aHDDSize, 56 56 NetworkAdapterType_T aNetworkAdapterType, uint32_t numSerialEnabled, 57 StorageControllerType_T aStorageControllerType); 57 StorageControllerType_T aDvdStorageControllerType, 58 StorageBus_T aDvdStorageBusType, 59 StorageControllerType_T aHdStorageControllerType, 60 StorageBus_T aHdStorageBusType); 58 61 void uninit(); 59 62 … … 71 74 STDMETHOD(COMGETTER(AdapterType)) (NetworkAdapterType_T *aNetworkAdapterType); 72 75 STDMETHOD(COMGETTER(RecommendedFirmware)) (FirmwareType_T *aFirmwareType); 73 STDMETHOD(COMGETTER(RecommendedStorageController)) (StorageControllerType_T *aStorageControllerType); 76 STDMETHOD(COMGETTER(RecommendedDvdStorageBus)) (StorageControllerType_T *aStorageBusType); 77 STDMETHOD(COMGETTER(RecommendedDvdStorageController)) (StorageControllerType_T *aStorageControllerType); 78 STDMETHOD(COMGETTER(RecommendedHdStorageBus)) (StorageControllerType_T *aStorageBusType); 79 STDMETHOD(COMGETTER(RecommendedHdStorageController)) (StorageControllerType_T *aStorageControllerType); 74 80 STDMETHOD(COMGETTER(RecommendedPae)) (BOOL *aRecommendedExtHw); 75 81 STDMETHOD(COMGETTER(RecommendedUsbHid)) (BOOL *aRecommendedUsbHid); … … 104 110 const NetworkAdapterType_T mNetworkAdapterType; 105 111 const uint32_t mNumSerialEnabled; 106 const StorageControllerType_T mStorageControllerType; 112 const StorageControllerType_T mDvdStorageControllerType; 113 const StorageBus_T mDvdStorageBusType; 114 const StorageControllerType_T mHdStorageControllerType; 115 const StorageBus_T mHdStorageBusType; 107 116 }; 108 117
Note:
See TracChangeset
for help on using the changeset viewer.