summaryrefslogtreecommitdiffhomepage
path: root/src/utils.h
diff options
context:
space:
mode:
authorRay <[email protected]>2017-04-21 00:08:00 +0200
committerRay <[email protected]>2017-04-21 00:08:00 +0200
commitecfe31bf1d2647dc52b8e1584e4b7f022049e09b (patch)
treeadbccc5074a7a2af5459d1cae0c4da66308bffe7 /src/utils.h
parent8d3750e36d970d86507e6556bb2c61ee83e45e47 (diff)
downloadraylib-ecfe31bf1d2647dc52b8e1584e4b7f022049e09b.tar.gz
raylib-ecfe31bf1d2647dc52b8e1584e4b7f022049e09b.zip
Make TraceLog() public to the API
enum LogType could require some revision...
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/utils.h b/src/utils.h
index 2b4d838b..64592c73 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -46,8 +46,6 @@
//----------------------------------------------------------------------------------
// Types and Structures Definition
//----------------------------------------------------------------------------------
-typedef enum { INFO = 0, ERROR, WARNING, DEBUG, OTHER } TraceLogType;
-
#ifdef __cplusplus
extern "C" { // Prevents name mangling of functions
#endif
@@ -60,8 +58,6 @@ extern "C" { // Prevents name mangling of functions
//----------------------------------------------------------------------------------
// Module Functions Declaration
//----------------------------------------------------------------------------------
-void TraceLog(int msgType, const char *text, ...); // Outputs a trace log message
-
#if defined(PLATFORM_DESKTOP) || defined(PLATFORM_RPI)
#if defined(SUPPORT_SAVE_BMP)
void SaveBMP(const char *fileName, unsigned char *imgData, int width, int height, int compSize);