kdebug.h

Detailed Description

Definition in filekdebug.h.

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.


Defines

#define K_CHECKRTNV(condition, value)
 Checks the condition, if it evaluates to false returns value.
#define K_CHECKRTN(condition)
 Checks the condition, if it evaluates to false returns.

Define Documentation

#define K_CHECKRTN(condition  ) 

Value:

if( !(condition) ){                     \
        return;                             \
    }
Checks the condition, if it evaluates to false returns.

Definition at line57of filekdebug.h.

#define K_CHECKRTNV(condition,
value  ) 

Value:

if( !(condition) ){                     \
        return value;                       \
    }
Checks the condition, if it evaluates to false returns value.

Definition at line49of filekdebug.h.