#include <nitro/misc.h>
SDK_WARNING(exp, fmt, ...);
exp | The condition parameter. |
fmt | The display character string (format character string). |
None.
This macro examines a condition, and outputs a character string if the condition is not fulfilled. Unlike SDK_ASSERT()
, it does not force an application to terminate. In accordance with the format character string fmt
, a variable number of arguments is allowed.
Because this macro function is a debugging function, it will not perform the output operation in the RELEASE and the FINALROM builds.
09/01/2004 Added the description that the RELEASE and ROM builds do not output
03/12/2004 Added description
02/27/2004 Initial version