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

42 lines
1,004 B
C

#ifndef XMP_HIO_H
#define XMP_HIO_H
#include <sys/types.h>
#include <sys/stat.h>
#include <stddef.h>
#include "memio.h"
#define HIO_HANDLE_TYPE(x) ((x)->type)
typedef struct {
#define HIO_HANDLE_TYPE_FILE 0
#define HIO_HANDLE_TYPE_MEMORY 1
int type;
long size;
union {
FILE *file;
MFILE *mem;
} handle;
int error;
} HIO_HANDLE;
int8 hio_read8s (HIO_HANDLE *);
uint8 hio_read8 (HIO_HANDLE *);
uint16 hio_read16l (HIO_HANDLE *);
uint16 hio_read16b (HIO_HANDLE *);
uint32 hio_read24l (HIO_HANDLE *);
uint32 hio_read24b (HIO_HANDLE *);
uint32 hio_read32l (HIO_HANDLE *);
uint32 hio_read32b (HIO_HANDLE *);
size_t hio_read (void *, size_t, size_t, HIO_HANDLE *);
int hio_seek (HIO_HANDLE *, long, int);
long hio_tell (HIO_HANDLE *);
int hio_eof (HIO_HANDLE *);
int hio_error (HIO_HANDLE *);
HIO_HANDLE *hio_open (const void *, const char *);
HIO_HANDLE *hio_open_mem (const void *, long);
HIO_HANDLE *hio_open_file (FILE *);
int hio_close (HIO_HANDLE *);
long hio_size (HIO_HANDLE *);
#endif