Changeset 26587 in vbox for trunk/src/VBox/Main/ConsoleImplTeleporter.cpp
- Timestamp:
- Feb 16, 2010 4:57:09 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImplTeleporter.cpp
r26553 r26587 894 894 * @param aProgress Where to return the progress object. 895 895 */ 896 STDMETHODIMP 897 Console::Teleport(IN_BSTR aHostname, ULONG aPort, IN_BSTR aPassword, ULONG aMaxDowntime, IProgress **aProgress) 896 STDMETHODIMP Console::Teleport(IN_BSTR aHostname, 897 ULONG aPort, 898 IN_BSTR aPassword, 899 ULONG aMaxDowntime, 900 IProgress **aProgress) 898 901 { 899 902 /* … … 903 906 CheckComArgOutPointerValid(aProgress); 904 907 CheckComArgStrNotEmptyOrNull(aHostname); 905 CheckComArgNotNull(aHostname);906 908 CheckComArgExprMsg(aPort, aPort > 0 && aPort <= 65535, ("is %u", aPort)); 907 909 CheckComArgExprMsg(aMaxDowntime, aMaxDowntime > 0, ("is %u", aMaxDowntime));
Note:
See TracChangeset
for help on using the changeset viewer.