diff options
| author | sheepandshepherd | 2017-05-09 20:18:20 +0200 |
|---|---|---|
| committer | sheepandshepherd | 2017-05-10 00:19:38 +0200 |
| commit | 99e07448d1bb67f4b10e2234b5f2f18a0acf5de2 (patch) | |
| tree | ba96df330177f0025175a66c28dc51492be01c72 /modules/gdnative/godot.cpp | |
| parent | 32afcbc48258ea970ef4b0707f69543baf0f2f5a (diff) | |
| download | godot-99e07448d1bb67f4b10e2234b5f2f18a0acf5de2.tar.gz godot-99e07448d1bb67f4b10e2234b5f2f18a0acf5de2.tar.zst godot-99e07448d1bb67f4b10e2234b5f2f18a0acf5de2.zip | |
Diffstat (limited to 'modules/gdnative/godot.cpp')
| -rw-r--r-- | modules/gdnative/godot.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/gdnative/godot.cpp b/modules/gdnative/godot.cpp index 7477a28db..4b865966f 100644 --- a/modules/gdnative/godot.cpp +++ b/modules/gdnative/godot.cpp @@ -30,6 +30,7 @@ #include "godot.h" #include "class_db.h" +#include "error_macros.h" #include "gdnative.h" #include "global_config.h" #include "global_constants.h" @@ -215,6 +216,14 @@ void GDAPI godot_free(void *p_ptr) { memfree(p_ptr); } +void GDAPI godot_print_error(const char *p_description, const char *p_function, const char *p_file, int p_line) { + _err_print_error(p_function, p_file, p_line, p_description, ERR_HANDLER_ERROR); +} + +void GDAPI godot_print_warning(const char *p_description, const char *p_function, const char *p_file, int p_line) { + _err_print_error(p_function, p_file, p_line, p_description, ERR_HANDLER_WARNING); +} + #ifdef __cplusplus } #endif |
