1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-20 05:34:47 +00:00
QB64-PE/internal/c/parts/audio/extras/libxmp-lite/format.h
Matthew Kilgore 481906977e Add a740g's miniaudio backend
This is a single commit adding all of a740g's audio backend. Later
commits will connect it together with QB64PE itself.
2022-08-27 14:27:55 -04:00

26 lines
500 B
C

#ifndef LIBXMP_FORMAT_H
#define LIBXMP_FORMAT_H
#include "common.h"
#include "hio.h"
struct format_loader {
const char *name;
int (*const test)(HIO_HANDLE *, char *, const int);
int (*const loader)(struct module_data *, HIO_HANDLE *, const int);
};
const char *const *format_list(void);
#ifndef LIBXMP_CORE_PLAYER
#define NUM_FORMATS 53
#define NUM_PW_FORMATS 43
#ifndef LIBXMP_NO_PROWIZARD
int pw_test_format(HIO_HANDLE *, char *, const int, struct xmp_test_info *);
#endif
#endif
#endif