Changeset 10304 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jul 7, 2008 10:30:22 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/ConsoleImpl.h
r10233 r10304 281 281 * </code> 282 282 * 283 * @note Temporarily locks the argument for writing. 284 * 283 285 * @sa SafeVMPtr, SafeVMPtrQuiet 284 286 */ … … 287 289 /** 288 290 * Same as AutoVMCaller but doesn't set extended error info on failure. 291 * 292 * @note Temporarily locks the argument for writing. 289 293 */ 290 294 typedef AutoVMCallerBase <true, false> AutoVMCallerQuiet; … … 293 297 * Same as AutoVMCaller but allows a null VM pointer (to trigger an error 294 298 * instead of assertion). 299 * 300 * @note Temporarily locks the argument for writing. 295 301 */ 296 302 typedef AutoVMCallerBase <false, true> AutoVMCallerWeak; … … 300 306 * and allows a null VM pointer (to trigger an error instead of 301 307 * assertion). 308 * 309 * @note Temporarily locks the argument for writing. 302 310 */ 303 311 typedef AutoVMCallerBase <true, true> AutoVMCallerQuietWeak; … … 341 349 * </code> 342 350 * 351 * @note Temporarily locks the argument for writing. 352 * 343 353 * @sa SafeVMPtrQuiet, AutoVMCaller 344 354 */ … … 355 365 * return S_OK; 356 366 * </code> 367 * 368 * @note Temporarily locks the argument for writing. 357 369 * 358 370 * @sa SafeVMPtr, AutoVMCaller
Note:
See TracChangeset
for help on using the changeset viewer.