WARNING: REMOVED: raudio_standalone example

Moved to raudio library repo: https://github.com/raysan5/raudio
This commit is contained in:
Ray 2022-07-15 19:05:05 +02:00
parent 6c2c176a99
commit 8aa105fd5b
11 changed files with 5 additions and 1153 deletions

View file

@ -178,21 +178,21 @@ typedef struct tagBITMAPINFOHEADER {
#if defined(RAUDIO_STANDALONE)
#ifndef TRACELOG
#define TRACELOG(level, ...) (void)0
#define TRACELOG(level, ...) printf(__VA_ARGS__)
#endif
// Allow custom memory allocators
#ifndef RL_MALLOC
#define RL_MALLOC(sz) malloc(sz)
#define RL_MALLOC(sz) malloc(sz)
#endif
#ifndef RL_CALLOC
#define RL_CALLOC(n,sz) calloc(n,sz)
#define RL_CALLOC(n,sz) calloc(n,sz)
#endif
#ifndef RL_REALLOC
#define RL_REALLOC(ptr,sz) realloc(ptr,sz)
#define RL_REALLOC(ptr,sz) realloc(ptr,sz)
#endif
#ifndef RL_FREE
#define RL_FREE(ptr) free(ptr)
#define RL_FREE(ptr) free(ptr)
#endif
#endif