Changeset 99782 in vbox
- Timestamp:
- May 12, 2023 2:53:20 PM (21 months ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/en_US/SDKRef.xml
r99277 r99782 4176 4176 See <link linkend="IGuestSession__fsQueryInfo">IGuestSession::fsQueryInfo</link> and 4177 4177 <link linkend="IGuestSession__fsQueryFreeSpace">IGuestSession::fsQueryFreeSpace</link> for more information.</para> 4178 </listitem> 4179 4180 <listitem><para>The APIs <link linkend="IGuestSession__waitFor">IGuestSession::waitFor</link> and 4181 <link linkend="IGuestProcess__waitFor">IGuestProcess::waitFor</link> are now marked 4182 as being deprecated. Use <link linkend="IGuestSession__waitForArray">IGuestSession::waitForArray</link> 4183 and <link linkend="IGuestProcess__waitForArray">IGuestProcess::waitForArray</link> instead.</para> 4178 4184 </listitem> 4179 4185 -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r99781 r99782 16202 16202 <desc> 16203 16203 Waits for one or more events to happen. 16204 <note> 16205 Deprecated and will be removed. Use <link to="IGuestSession::waitForArray"/> instead. 16206 </note> 16204 16207 </desc> 16205 16208 <param name="waitFor" type="unsigned long" dir="in"> … … 16304 16307 <desc> 16305 16308 Waits for one or more events to happen. 16309 <note> 16310 Deprecated and will be removed. Use <link to="IProcess::waitForArray"/> instead. 16311 </note> 16306 16312 </desc> 16307 16313 <param name="waitFor" type="unsigned long" dir="in"> -
trunk/src/VBox/Main/src-client/GuestProcessImpl.cpp
r99392 r99782 2146 2146 } 2147 2147 2148 /* Deprecated; use GuestProcess::waitForArray() instead. */ 2148 2149 HRESULT GuestProcess::waitFor(ULONG aWaitFor, ULONG aTimeoutMS, ProcessWaitResult_T *aReason) 2149 2150 { -
trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
r99416 r99782 5252 5252 } 5253 5253 5254 /* Deprecated; use GuestSession::waitForArray() instead. */ 5254 5255 HRESULT GuestSession::waitFor(ULONG aWaitFor, ULONG aTimeoutMS, GuestSessionWaitResult_T *aReason) 5255 5256 {
Note:
See TracChangeset
for help on using the changeset viewer.