Changeset View
Changeset View
Standalone View
Standalone View
intern/clog/CLG_log.h
| Show First 20 Lines • Show All 133 Lines • ▼ Show 20 Lines | |||||
| /* Main initializer and destructor (per session, not logger). */ | /* Main initializer and destructor (per session, not logger). */ | ||||
| void CLG_init(void); | void CLG_init(void); | ||||
| void CLG_exit(void); | void CLG_exit(void); | ||||
| void CLG_output_set(void *file_handle); | void CLG_output_set(void *file_handle); | ||||
| void CLG_output_use_basename_set(int value); | void CLG_output_use_basename_set(int value); | ||||
| void CLG_output_use_timestamp_set(int value); | void CLG_output_use_timestamp_set(int value); | ||||
| void CLG_error_fn_set(void (*error_fn)(void *file_handle)); | |||||
| void CLG_fatal_fn_set(void (*fatal_fn)(void *file_handle)); | void CLG_fatal_fn_set(void (*fatal_fn)(void *file_handle)); | ||||
| void CLG_backtrace_fn_set(void (*fatal_fn)(void *file_handle)); | void CLG_backtrace_fn_set(void (*fatal_fn)(void *file_handle)); | ||||
| void CLG_type_filter_include(const char *type_filter, int type_filter_len); | void CLG_type_filter_include(const char *type_filter, int type_filter_len); | ||||
| void CLG_type_filter_exclude(const char *type_filter, int type_filter_len); | void CLG_type_filter_exclude(const char *type_filter, int type_filter_len); | ||||
| void CLG_level_set(int level); | void CLG_level_set(int level); | ||||
| ▲ Show 20 Lines • Show All 71 Lines • Show Last 20 Lines | |||||