adding SetTraceLogCallback

This commit is contained in:
Juan Medina 2020-08-28 21:19:18 +01:00
parent 7bdb60d758
commit ca72d271e1
4 changed files with 101 additions and 0 deletions

11
raylib/utils_log.h Normal file
View file

@ -0,0 +1,11 @@
#if defined(__cplusplus)
extern "C" { // Prevents name mangling of functions
#endif
void setLogCallbackWrapper(void); // enable the call-back
void internalTraceLogCallbackGo(int, void*, int); // Go function that will get called
#if defined(__cplusplus)
}
#endif