Go to the source code of this file.
|
| #define | Chk(expr) |
| |
| #define | ChkIf(expr, hrerror) |
| |
| #define | ChkA(expr) |
| |
| #define | ChkIfA(expr, hrerror) |
| |
Value:{ \
((void)hr); \
{ \
goto Cleanup; \
} \
}
HRESULT CheckCore(const T t)
Definition at line 53 of file chkmacros.h.
Value:{ \
((void)hr); \
goto Cleanup; \
} \
}
HRESULT CheckCore(const T t)
Definition at line 73 of file chkmacros.h.
| #define ChkIf |
( |
|
expr, |
|
|
|
hrerror |
|
) |
| |
Value:{ \
((void)hr); \
{ \
hr = (hrerror); \
goto Cleanup; \
} \
}
bool CheckIfCore(const T t)
Definition at line 63 of file chkmacros.h.
| #define ChkIfA |
( |
|
expr, |
|
|
|
hrerror |
|
) |
| |
Value:{ \
((void)hr); \
hr = (hrerror); \
goto Cleanup; \
} \
}
bool CheckIfCore(const T t)
Definition at line 84 of file chkmacros.h.
template<typename T >
| bool CheckIfCore |
( |
const T |
t | ) |
|
|
inline |