2010-12-12 15:03:30 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include "plugin.h"
|
|
|
|
#include "inttypes.h"
|
2012-03-27 14:27:02 +00:00
|
|
|
#include <tlsf.h>
|
2010-12-12 15:03:30 +00:00
|
|
|
|
|
|
|
#ifndef MIKMOD_SUPP_H
|
|
|
|
#define MIKMOD_SUPP_H
|
|
|
|
|
|
|
|
#undef WIN32
|
|
|
|
|
|
|
|
#ifndef NO_MMSUPP_DEFINES
|
|
|
|
#define snprintf(...) rb->snprintf(__VA_ARGS__)
|
|
|
|
#define fdprintf(...) rb->fdprintf(__VA_ARGS__)
|
|
|
|
#define vsnprintf(...) rb->vsnprintf(__VA_ARGS__)
|
|
|
|
|
|
|
|
#define srand(a) rb->srand(a)
|
|
|
|
#define rand() rb->rand()
|
|
|
|
#define qsort(a,b,c,d) rb->qsort(a,b,c,d)
|
|
|
|
#define atoi(a) rb->atoi(a)
|
|
|
|
|
2011-09-03 23:42:50 +00:00
|
|
|
#undef strlen
|
2010-12-12 15:03:30 +00:00
|
|
|
#define strlen(a) rb->strlen(a)
|
2011-09-03 23:42:50 +00:00
|
|
|
#undef strcpy
|
2010-12-12 15:03:30 +00:00
|
|
|
#define strcpy(a,b) rb->strcpy(a,b)
|
2011-09-03 23:42:50 +00:00
|
|
|
#undef strcat
|
2010-12-12 15:03:30 +00:00
|
|
|
#define strcat(a,b) rb->strcat(a,b)
|
2011-09-03 23:42:50 +00:00
|
|
|
#undef strncmp
|
2010-12-12 15:03:30 +00:00
|
|
|
#define strncmp(a,b,c) rb->strncmp(a,b,c)
|
2011-09-03 23:42:50 +00:00
|
|
|
#undef strcasecmp
|
2010-12-12 15:03:30 +00:00
|
|
|
#define strcasecmp(a,b) rb->strcasecmp(a,b)
|
|
|
|
|
|
|
|
#undef open
|
|
|
|
#define open(a,b) rb->open(a,b)
|
|
|
|
#undef lseek
|
|
|
|
#define lseek(a,b,c) rb->lseek(a,b,c)
|
|
|
|
#undef close
|
|
|
|
#define close(a) rb->close(a)
|
|
|
|
#undef read
|
|
|
|
#define read(a,b,c) rb->read(a,b,c)
|
|
|
|
#undef write
|
|
|
|
#define write(a,b,c) rb->write(a,b,c)
|
|
|
|
#undef filesize
|
|
|
|
#define filesize(a) rb->filesize(a)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define malloc(x) tlsf_malloc(x)
|
|
|
|
#define free(x) tlsf_free(x)
|
|
|
|
#define realloc(x,y) tlsf_realloc(x,y)
|
|
|
|
#define calloc(x,y) tlsf_calloc(x,y)
|
|
|
|
|
2011-09-03 23:42:50 +00:00
|
|
|
#undef strncat
|
2010-12-12 15:03:30 +00:00
|
|
|
#define strncat mmsupp_strncat
|
2011-09-03 23:42:50 +00:00
|
|
|
#undef printf
|
2010-12-12 15:03:30 +00:00
|
|
|
#define printf mmsupp_printf
|
2011-09-03 23:42:50 +00:00
|
|
|
#undef sprintf
|
2010-12-12 15:03:30 +00:00
|
|
|
#define sprintf mmsupp_sprintf
|
|
|
|
|
|
|
|
#define fprintf(...)
|
|
|
|
|
|
|
|
char* mmsupp_strncat(char *s1, const char *s2, size_t n);
|
|
|
|
void mmsupp_printf(const char *fmt, ...);
|
|
|
|
int mmsupp_sprintf(char *buf, const char *fmt, ... );
|
|
|
|
|
|
|
|
extern const struct plugin_api * rb;
|
|
|
|
|
|
|
|
|
|
|
|
#define SAMPLE_RATE SAMPR_44 /* 44100 */
|
|
|
|
|
|
|
|
#define BUF_SIZE 4096*8
|
|
|
|
#define NBUF 2
|
|
|
|
|
|
|
|
/* LibMikMod defines */
|
|
|
|
#define HAVE_SNPRINTF 1
|
|
|
|
|
|
|
|
#ifndef INT_MAX
|
|
|
|
#define INT_MAX 2147483647
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|