diff options
Diffstat (limited to 'core/print_string.h')
| -rw-r--r-- | core/print_string.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/core/print_string.h b/core/print_string.h index 49960b7ed7..4ea389b3a1 100644 --- a/core/print_string.h +++ b/core/print_string.h @@ -5,7 +5,7 @@ /* GODOT ENGINE */ /* http://www.godotengine.org */ /*************************************************************************/ -/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ +/* Copyright (c) 2007-2015 Juan Linietsky, Ariel Manzur. */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ /* a copy of this software and associated documentation files (the */ @@ -47,9 +47,12 @@ struct PrintHandlerList { }; + void add_print_handler(PrintHandlerList *p_handler); void remove_print_handler(PrintHandlerList *p_handler); +extern bool _print_line_enabled; +extern bool _print_error_enabled; extern void print_line(String p_string); #endif |