mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 19:50:45 +00:00
32 lines
518 B
C
32 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
|