| Liboil Reference Manual |
|---|
liboildebug —
void (*OilDebugPrintFunc) (int level, const char *file, const char *func, int line, const char *format, va_list varargs); enum OilDebugLevel; #define OIL_ERROR (...) #define OIL_WARNING (...) #define OIL_INFO (...) #define OIL_DEBUG (...) #define OIL_LOG (...) #define OIL_FUNCTION #define OIL_DEBUG_PRINT (level, ...) void oil_debug_set_print_function (OilDebugPrintFunc func); int oil_debug_get_level (void); void oil_debug_set_level (int level);
void (*OilDebugPrintFunc) (int level,
const char *file,
const char *func,
int line,
const char *format,
va_list varargs);
| level : | |
| file : | |
| func : | |
| line : | |
| format : | |
| varargs : |
typedef enum {
OIL_DEBUG_NONE = 0,
OIL_DEBUG_ERROR,
OIL_DEBUG_WARNING,
OIL_DEBUG_INFO,
OIL_DEBUG_DEBUG,
OIL_DEBUG_LOG
} OilDebugLevel;
| << liboilcpu | OilFunction >> |