summaryrefslogtreecommitdiffhomepage
path: root/src/utils.h
diff options
context:
space:
mode:
authorRay <[email protected]>2017-04-24 00:18:53 +0200
committerGitHub <[email protected]>2017-04-24 00:18:53 +0200
commit71fe3c0b086c9cf7707d9ef455c57360f88be8a1 (patch)
tree1d1b7dfc780fd6049f68b5d69d9194add1302dfd /src/utils.h
parent0ed82150f0228c949c36f9ee83d4c2e0c92f9d0e (diff)
parent9a515ae9db9f63d5bfa8545cfbbfdce683daf5f6 (diff)
downloadraylib-71fe3c0b086c9cf7707d9ef455c57360f88be8a1.tar.gz
raylib-71fe3c0b086c9cf7707d9ef455c57360f88be8a1.zip
Merge pull request #269 from raysan5/develop
Integrate develop branch
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);