Changeset 72949 in vbox for trunk/include/VBox/com
- Timestamp:
- Jul 7, 2018 4:22:45 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123501
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/errorprint.h
r69107 r72949 218 218 */ 219 219 #define CHECK_ERROR2I_BREAK(iface, method) CHECK_ERROR2_EX(HRESULT, hrcCheck, iface, method, break) 220 /** 221 * Simplified version of CHECK_ERROR2_EX that executes the |stmt;break| 222 * statements after error reporting and that uses an internal variable 223 * |hrcCheck| for holding the result. 224 * 225 * @param iface The interface pointer (can be a smart pointer object). 226 * @param method The method to invoke together with the parameters. 227 * @param stmt Statement to be executed after reporting failures. 228 * @sa CHECK_ERROR2_BREAK, CHECK_ERROR2_EX 229 */ 230 #define CHECK_ERROR2I_BREAK_STMT(iface, method, stmt) CHECK_ERROR2_EX(HRESULT, hrcCheck, iface, method, stmt; break) 220 231 221 232
Note:
See TracChangeset
for help on using the changeset viewer.