mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
Allow disabling output/fine-tuning output
-nooutput disables output completely (both STDOUT and STDERR). -noinfo disables INFO lines. -nowarn disables WARN lines. -noerror disables ERROR lines.
This commit is contained in:
@@ -8,8 +8,16 @@ extern "C"
|
||||
|
||||
void vlog_init(void);
|
||||
|
||||
void vlog_toggle_output(int enable_output);
|
||||
|
||||
void vlog_toggle_color(int enable_color);
|
||||
|
||||
void vlog_toggle_info(int enable_info);
|
||||
|
||||
void vlog_toggle_warn(int enable_warn);
|
||||
|
||||
void vlog_toggle_error(int enable_error);
|
||||
|
||||
int vlog_info(const char* text, ...);
|
||||
|
||||
int vlog_warn(const char* text, ...);
|
||||
|
||||
Reference in New Issue
Block a user