VirtualBox

Ignore:
Timestamp:
Apr 19, 2010 9:17:37 AM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
60220
Message:

Guest Control: Update (API for retrieving output).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/GuestImpl.cpp

    r28434 r28448  
    816816}
    817817
    818 STDMETHODIMP Guest::GetProcessOutput(ULONG aPID, ULONG aFlags, BSTR *aBuffer)
     818STDMETHODIMP Guest::GetProcessOutput(ULONG aPID, ULONG aFlags, ULONG64 aSize, ComSafeArrayOut(BYTE, aData))
    819819{
    820820#ifndef VBOX_WITH_GUEST_CONTROL
     
    825825    NOREF(aPID);
    826826    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;
    830840#endif
    831841}
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette