Changeset 17737 in vbox for trunk/src/VBox/Main/testcase
- Timestamp:
- Mar 12, 2009 12:20:25 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 44254
- Location:
- trunk/src/VBox/Main/testcase
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/testcase/tstAPI.cpp
r16867 r17737 395 395 com::SafeIfaceArray <IMachine> machines; 396 396 CHECK_ERROR_BREAK (virtualBox, 397 COMGETTER(Machines 2) (ComSafeArrayAsOutParam (machines)));397 COMGETTER(Machines) (ComSafeArrayAsOutParam (machines))); 398 398 399 399 printf ("%u machines registered (machines.isNull()=%d).\n", -
trunk/src/VBox/Main/testcase/tstVBoxAPILinux.cpp
r17669 r17737 116 116 PRUint32 machineCnt = 0; 117 117 118 rc = virtualBox->GetMachines 2(&machineCnt, &machines);118 rc = virtualBox->GetMachines(&machineCnt, &machines); 119 119 if (NS_SUCCEEDED(rc)) 120 120 { -
trunk/src/VBox/Main/testcase/tstVBoxAPIWin.cpp
r11115 r17737 68 68 SAFEARRAY *machinesArray = NULL; 69 69 70 rc = virtualBox->get_Machines 2(&machinesArray);70 rc = virtualBox->get_Machines(&machinesArray); 71 71 if (SUCCEEDED(rc)) 72 72 {
Note:
See TracChangeset
for help on using the changeset viewer.