Changeset 32020 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Aug 27, 2010 7:08:38 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 65273
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r31698 r32020 1933 1933 } 1934 1934 1935 BOOL guestFlag;1936 rc = guest->COMGETTER(Additions Active)(&guestFlag);1935 ULONG guestRunLevel; 1936 rc = guest->COMGETTER(AdditionsRunLevel)(&guestRunLevel); 1937 1937 if (SUCCEEDED(rc)) 1938 1938 { 1939 1939 if (details == VMINFO_MACHINEREADABLE) 1940 RTPrintf("GuestAdditions Active=%s\n", guestFlag ? "on" : "off");1940 RTPrintf("GuestAdditionsRunLevel=%u\n", guestRunLevel); 1941 1941 else 1942 RTPrintf("Additions active: %s\n", guestFlag ? "yes" : "no");1942 RTPrintf("Additions run level: %u\n", guestRunLevel); 1943 1943 } 1944 1944
Note:
See TracChangeset
for help on using the changeset viewer.