Changeset 28358 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Apr 15, 2010 1:26:07 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60118
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/GuestImpl.h
r28354 r28358 97 97 IN_BSTR aUserName, IN_BSTR aPassword, 98 98 ULONG aTimeoutMS, ULONG* aPID, IProgress **aProgress); 99 STDMETHOD(GetProcessOutput)( BSTR *aBuffer, ULONG aFlags);99 STDMETHOD(GetProcessOutput)(ULONG aPID, ULONG aFlags, BSTR *aBuffer); 100 100 STDMETHOD(InternalGetStatistics)(ULONG *aCpuUser, ULONG *aCpuKernel, ULONG *aCpuIdle, 101 101 ULONG *aMemTotal, ULONG *aMemFree, ULONG *aMemBalloon, ULONG *aMemCache, … … 124 124 struct CallbackContext 125 125 { 126 uint32_t mContextID;127 void *pvData;128 uint32_t cbData;126 uint32_t mContextID; 127 void *pvData; 128 uint32_t cbData; 129 129 /** Atomic flag whether callback was called. */ 130 volatile bool bCalled; 131 ComObjPtr<Progress> pProgress; 130 volatile bool bCalled; 131 /** Pointer to user-supplied IProgress. */ 132 ComObjPtr<Progress> pProgress; 132 133 }; 133 134 typedef std::list< CallbackContext > CallbackList;
Note:
See TracChangeset
for help on using the changeset viewer.