Changeset 65182 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jan 6, 2017 10:59:47 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp
r64104 r65182 2543 2543 if (details == VMINFO_MACHINEREADABLE) 2544 2544 { 2545 RTPrintf("v cpenabled=\"%s\"\n", bActive ? "on" : "off");2546 RTPrintf("v cpscreens=");2545 RTPrintf("videocap=\"%s\"\n", bActive ? "on" : "off"); 2546 RTPrintf("videocapscreens="); 2547 2547 bool fComma = false; 2548 2548 for (unsigned i = 0; i < screens.size(); i++) … … 2553 2553 } 2554 2554 RTPrintf("\n"); 2555 RTPrintf("vcpfile=\"%ls\"\n", File.raw()); 2556 RTPrintf("vcpwidth=%u\n", (unsigned)Width); 2557 RTPrintf("vcpheight=%u\n", (unsigned)Height); 2558 RTPrintf("vcprate=%u\n", (unsigned)Rate); 2559 RTPrintf("vcpfps=%u\n", (unsigned)Fps); 2555 RTPrintf("videocapfile=\"%ls\"\n", File.raw()); 2556 RTPrintf("videocapres=%ux%u\n", (unsigned)Width, (unsigned)Height); 2557 RTPrintf("videocaprate=%u\n", (unsigned)Rate); 2558 RTPrintf("videocapfps=%u\n", (unsigned)Fps); 2560 2559 } 2561 2560 else
Note:
See TracChangeset
for help on using the changeset viewer.