Changeset 55943 in vbox
- Timestamp:
- May 19, 2015 11:00:46 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/Wrapper.h
r50416 r55943 1 1 /* $Id$ */ 2 2 /** @file 3 * VirtualBox COM : API wrapper helpers3 * VirtualBox COM - API wrapper helpers. 4 4 */ 5 5 6 6 /* 7 * Copyright (C) 2012-201 4Oracle Corporation7 * Copyright (C) 2012-2015 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 33 33 #define CheckComArgOutPointerValidThrow(arg) \ 34 34 do { \ 35 if (RT_UNLIKELY(!VALID_PTR(arg))) \ 35 if (RT_LIKELY(RT_VALID_PTR(arg))) \ 36 { /* likely */ }\ 37 else \ 36 38 throw setError(E_POINTER, \ 37 39 tr("Output argument %s points to invalid memory location (%p)"), \
Note:
See TracChangeset
for help on using the changeset viewer.