raze-gles/source/libxmp-lite/src/memio.h
2017-06-09 06:39:37 +00:00

31 lines
518 B
C

#ifndef LIBXMP_MEMIO_H
#define LIBXMP_MEMIO_H
#include <stdio.h>
typedef struct {
const unsigned char *start;
ptrdiff_t pos;
ptrdiff_t size;
} MFILE;
#ifdef __cplusplus
extern "C" {
#endif
MFILE *mopen(const void *, long);
int mgetc(MFILE *stream);
size_t mread(void *, size_t, size_t, MFILE *);
int mseek(MFILE *, long, int);
long mtell(MFILE *);
int mclose(MFILE *);
int meof(MFILE *);
#ifndef LIBXMP_CORE_PLAYER
int mstat(MFILE *, struct stat *);
#endif
#ifdef __cplusplus
}
#endif
#endif