Nullable Macros. More...
Macros | |
| #define | NULLABLE_SET_EMPTY(a) |
| #define | NULLABLE_CHECK_EMPTY(a) ((a).isNull == TRUE) |
| Used to check if the value is NULL. If yes, the value field should not be populated. | |
| #define | NULLABLE_SET_VALUE(a, val) |
| Used to set a value. The macro sets the isNull flag to FALSE and sets the passed in value. | |
Nullable Macros.
Use this to set the value to NULL. If value field is set after calling this, it is ignored
Used to check if the value is NULL. If yes, the value field should not be populated.