Changeset 27945 in vbox for trunk/src/VBox/Main
- Timestamp:
- Apr 1, 2010 3:20:08 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 59648
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/GuestImpl.cpp
r27930 r27945 423 423 IN_BSTR aStdIn, IN_BSTR aStdOut, IN_BSTR aStdErr, 424 424 IN_BSTR aUserName, IN_BSTR aPassword, 425 ULONG aTimeoutMS, ULONG *aPID )425 ULONG aTimeoutMS, ULONG *aPID, IProgress **aProgress) 426 426 { 427 427 #ifndef VBOX_WITH_GUEST_CONTROL … … 431 431 432 432 CheckComArgStrNotEmptyOrNull(aCommand); 433 CheckComArgOutPointerValid(aProgress); 433 434 CheckComArgOutPointerValid(aPID); 434 435 /* Flags are not supported at the moment. */ -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r27911 r27945 8353 8353 <interface 8354 8354 name="IGuest" extends="$unknown" 8355 uuid=" 66dfe00b-f174-40d8-9d78-4e30d58137ed"8355 uuid="a4dac036-f7ed-4634-98d8-44b8672b1779" 8356 8356 wsmap="managed" 8357 8357 > … … 8528 8528 <desc>Foobar</desc> 8529 8529 </param> 8530 <param name="pid" type="unsigned long" dir=" return">8530 <param name="pid" type="unsigned long" dir="out"> 8531 8531 <desc>Foobar</desc> 8532 8532 </param> 8533 </method> 8533 <param name="progress" type="IProgress" dir="return"> 8534 <desc>Progress object to track the operation completion.</desc> 8535 </param> 8536 </method> 8534 8537 8535 8538 </interface> -
trunk/src/VBox/Main/include/GuestImpl.h
r27913 r27945 87 87 IN_BSTR aStdIn, IN_BSTR aStdOut, IN_BSTR aStdErr, 88 88 IN_BSTR aUserName, IN_BSTR aPassword, 89 ULONG aTimeoutMS, ULONG* aPID );89 ULONG aTimeoutMS, ULONG* aPID, IProgress **aProgress); 90 90 STDMETHOD(InternalGetStatistics)(ULONG aCpuId, ULONG *aCpuUser, ULONG *aCpuKernel, ULONG *aCpuIdle, 91 91 ULONG *aMemTotal, ULONG *aMemFree, ULONG *aMemBalloon, ULONG *aMemCache,
Note:
See TracChangeset
for help on using the changeset viewer.