Changeset 18050 in vbox for trunk/include
- Timestamp:
- Mar 18, 2009 9:47:39 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 44680
- Location:
- trunk/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/defs.h
r15051 r18050 5 5 6 6 /* 7 * Copyright (C) 2006-200 7Sun Microsystems, Inc.7 * Copyright (C) 2006-2009 Sun Microsystems, Inc. 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 62 62 63 63 /* Include iprt/types.h (which also includes iprt/types.h) now to make sure iprt 64 * get to stdint.h first, otherwise a system/xpcom header might beat us and64 * gets to stdint.h first, otherwise a system/xpcom header might beat us and 65 65 * we'll be without the macros that are optional in C++. */ 66 66 #include <iprt/types.h> … … 94 94 typedef const OLECHAR *CBSTR; 95 95 96 /** Input BSTR argument theinterface method declaration. */96 /** Input BSTR argument of interface method declaration. */ 97 97 #define IN_BSTR BSTR 98 98 99 /** Input GUID argument theinterface method declaration. */99 /** Input GUID argument of interface method declaration. */ 100 100 #define IN_GUID GUID 101 /** Output GUID argument theinterface method declaration. */101 /** Output GUID argument of interface method declaration. */ 102 102 #define OUT_GUID GUID* 103 103 … … 339 339 #define COM_IIDOF(I) NS_GET_IID (I) 340 340 341 /* two very simple ATL emulator classes to provide342 * FinalConstruct()/FinalRelease() functionality on Linux */341 /* Two very simple ATL emulator classes to provide 342 * FinalConstruct()/FinalRelease() functionality on Linux. */ 343 343 344 344 class CComObjectRootEx … … 448 448 449 449 /** 450 * Declares a w har_t string literal from the argument.450 * Declares a wchar_t string literal from the argument. 451 451 * Necessary to overcome MSC / GCC differences. 452 452 * @param s expression to stringify … … 483 483 * }}} 484 484 * 485 * On practice, you will need to use a FWResult variable when you call some COM485 * In practice, you will need to use a FWResult variable when you call some COM 486 486 * method B after another COM method A fails and want to return the result code 487 487 * of A even if B also fails, but want to return the failed result code of B if … … 539 539 * }}} 540 540 * 541 * On practice, you will need to use a LWResult variable when you call some COM541 * In practice, you will need to use a LWResult variable when you call some COM 542 542 * method B after COM method A fails and want to return the result code of B 543 543 * if B also fails, but still want to return the failed result code of A if B … … 578 578 579 579 #endif /* ___VBox_com_defs_h */ 580 -
trunk/include/iprt/assert.h
r16545 r18050 343 343 344 344 /** @def Assert 345 * Assert that an expression is true. If it's nothit breakpoint.345 * Assert that an expression is true. If false, hit breakpoint. 346 346 * @param expr Expression which should be true. 347 347 */
Note:
See TracChangeset
for help on using the changeset viewer.