Changeset 35764 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jan 28, 2011 1:56:15 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 69726
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.h
r35761 r35764 163 163 /* VBoxManageControlVM.cpp */ 164 164 int handleControlVM(HandlerArg *a); 165 ULONGgetMaxNics(IVirtualBox* vbox, IMachine* mach);165 unsigned int getMaxNics(IVirtualBox* vbox, IMachine* mach); 166 166 167 167 /* VBoxManageModifyVM.cpp */ -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageControlVM.cpp
r35761 r35764 64 64 } 65 65 66 67 ULONG getMaxNics(IVirtualBox* vbox, IMachine* mach) 66 unsigned int getMaxNics(IVirtualBox* vbox, IMachine* mach) 68 67 { 69 68 ComPtr <ISystemProperties> info; … … 77 76 CHECK_ERROR_BREAK(info, GetMaxNetworkAdapters(aChipset, &NetworkAdapterCount)); 78 77 79 return NetworkAdapterCount;78 return (unsigned int)NetworkAdapterCount; 80 79 } while (0); 81 80
Note:
See TracChangeset
for help on using the changeset viewer.