|
| #define | kzAssert(expression) |
| | In the debug build, if assertion expression evaluates to false, use this macro to terminate the application and log the error message.
|
| |
| #define | kzAssertMessage(expression, message) |
| | In the debug build, if the assertion expression evaluates to false, use this macro to terminate the application and log the error message including the description message you provided.
|
| |
| #define | kzAssertUnreachable() |
| | In the debug build, use this macro to terminate the application and log the error message.
|
| |
| #define | kzAssertUnreachableMessage(message) |
| | In the debug build, use this macro to terminate the application and log the error message including the description message you provided.
|
| |
| #define | kzDebugBreak() |
| | In the debug build, when you attach the debugger, use this macro to trigger a breakpoint.
|
| |