summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorPablo Marcos Oltra <[email protected]>2018-07-26 21:57:45 +0200
committerAhmad Fatoum <[email protected]>2018-07-26 21:57:45 +0200
commitc69f7953c79652c43ca56392d0df0bcf446da517 (patch)
treed8e29fb07e20c3047757850b258fbea54f8e5bd4 /src/raylib.h
parent64e9d72c0705c211261dab9fc0dbf5e25b0b97f3 (diff)
downloadraylib-c69f7953c79652c43ca56392d0df0bcf446da517.tar.gz
raylib-c69f7953c79652c43ca56392d0df0bcf446da517.zip
Add SetTraceLogCallback to enable users setting custom logging (#597)
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h
index 251dd020..4e64cdee 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -71,6 +71,8 @@
#ifndef RAYLIB_H
#define RAYLIB_H
+#include <stdarg.h> // Required for va_list
+
#if defined(_WIN32) && defined(BUILD_LIBTYPE_SHARED)
#define RLAPI __declspec(dllexport) // We are building raylib as a Win32 shared library (.dll)
#elif defined(_WIN32) && defined(USE_LIBTYPE_SHARED)
@@ -727,6 +729,9 @@ typedef enum {
HMD_SONY_PSVR
} VrDeviceType;
+// Callbacks to be implemented by users
+typedef void (*TraceLogCallback)(int msgType, const char *text, va_list args);
+
#ifdef __cplusplus
extern "C" { // Prevents name mangling of functions
#endif
@@ -796,6 +801,7 @@ RLAPI Color Fade(Color color, float alpha); // Color fade-
RLAPI void ShowLogo(void); // Activate raylib logo at startup (can be done with flags)
RLAPI void SetConfigFlags(unsigned char flags); // Setup window configuration flags (view FLAGS)
RLAPI void SetTraceLog(unsigned char types); // Enable trace log message types (bit flags based)
+RLAPI void SetTraceLogCallback(TraceLogCallback callback); // Set a trace log callback to enable custom logging bypassing raylib's one
RLAPI void TraceLog(int logType, const char *text, ...); // Show trace log messages (LOG_INFO, LOG_WARNING, LOG_ERROR, LOG_DEBUG)
RLAPI void TakeScreenshot(const char *fileName); // Takes a screenshot of current screen (saved a .png)
RLAPI int GetRandomValue(int min, int max); // Returns a random value between min and max (both included)