Go to the source code of this file.
Defines |
#define | XN_SETBITMASK(x) (1 << x-1) |
#define | XN_RET_IF_NULL(x, y) |
#define | XN_IS_STATUS_OK_RET(x, y) |
#define | XN_IS_STATUS_OK_GOCLEANUP_RET(x, y) |
#define | XN_IS_STATUS_OK(x) XN_IS_STATUS_OK_RET(x, x) |
#define | XN_IS_STATUS_OK_ASSERT(x) |
#define | XN_IS_STATUS_OK_GOCLEANUP(x) |
#define | XN_IS_BOOL_OK_RET(x, y) |
#define | XN_IS_BOOL_OK_GOCLEANUP_RET(x, y) |
#define | XN_GOCLEANUP_RET(x, y) |
#define | XN_VALIDATE_PTR(x, y) |
#define | XN_CHECK_INPUT_OVERFLOW(x, y) |
#define | XN_CHECK_OUTPUT_OVERFLOW(x, y) |
#define | XN_DISABLE_COPY_AND_ASSIGN(TypeName) |
#define | XN_REFERENCE_VARIABLE(x) ((void)x) |
Define Documentation
Value:if (x > y) \
{ \
return (XN_STATUS_INPUT_BUFFER_OVERFLOW); \
}
Returns an output overflow error if x is beyond y
Value:if (x > y) \
{ \
return (XN_STATUS_OUTPUT_BUFFER_OVERFLOW); \
}
Returns an input overflow error if x is beyond y
Value:TypeName(const TypeName&); \
void operator=(const TypeName&)
Disables Copy ctor and assignment operator. Should be placed under "private:" section.
Value:x = y; \
goto ErrorCleanUp;
Jumps to the ErrorCleanUp label if X isn't XN_STATUS_OK and returns Y.
Value:if (x != TRUE) \
{ \
goto ErrorCleanUp; \
}
Jumps to the ErrorCleanUp label if X isn't XN_STATUS_OK and returns Y.
Value:if (x != TRUE) \
{ \
return (y); \
}
Returns Y if X isn't XN_STATUS_OK.
Returns X if X isn't XN_STATUS_OK.
Value:if (x != XN_STATUS_OK) \
{ \
XN_ASSERT(FALSE); \
return (x); \
}
Value:Jumps to the ErrorCleanUp label if X isn't XN_STATUS_OK.
Value:if (x != XN_STATUS_OK) \
{ \
x = y; \
goto ErrorCleanUp; \
}
Jumps to the ErrorCleanUp label if X isn't XN_STATUS_OK and return Y.
Value:Returns Y if X isn't XN_STATUS_OK.
Disables the "local variable is initialized but not referenced" warning (if you need to use this variable in an assert
Value:if (x == NULL) \
{ \
return (y); \
}
Returns Y if X is NULL.
Returns the (x)th power of 2.
Value:if (x == NULL) \
{ \
return (y); \
}
Returns Y if X is null.