Changeset 28448 in vbox for trunk/src/VBox/Main/GuestImpl.cpp
- Timestamp:
- Apr 19, 2010 9:17:37 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60220
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/GuestImpl.cpp
r28434 r28448 816 816 } 817 817 818 STDMETHODIMP Guest::GetProcessOutput(ULONG aPID, ULONG aFlags, BSTR *aBuffer)818 STDMETHODIMP Guest::GetProcessOutput(ULONG aPID, ULONG aFlags, ULONG64 aSize, ComSafeArrayOut(BYTE, aData)) 819 819 { 820 820 #ifndef VBOX_WITH_GUEST_CONTROL … … 825 825 NOREF(aPID); 826 826 NOREF(aFlags); 827 NOREF(aBuffer); 828 829 return S_OK; 827 NOREF(aSize); 828 NOREF(aData); 829 830 HRESULT rc = S_OK; 831 832 size_t cbData = (size_t)RT_MIN(aSize, _1K); 833 com::SafeArray<BYTE> outputData(cbData); 834 835 if (FAILED(rc)) 836 outputData.resize(0); 837 outputData.detachTo(ComSafeArrayOutArg(aData)); 838 839 return rc; 830 840 #endif 831 841 }
Note:
See TracChangeset
for help on using the changeset viewer.