mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-28 19:20:41 +00:00
26 lines
472 B
C
26 lines
472 B
C
|
#ifndef LIBXMP_FORMAT_H
|
||
|
#define LIBXMP_FORMAT_H
|
||
|
|
||
|
#include <stdio.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);
|
||
|
};
|
||
|
|
||
|
char **format_list(void);
|
||
|
|
||
|
#ifndef LIBXMP_CORE_PLAYER
|
||
|
|
||
|
#define NUM_FORMATS 52
|
||
|
#define NUM_PW_FORMATS 43
|
||
|
|
||
|
int pw_test_format(HIO_HANDLE *, char *, const int, struct xmp_test_info *);
|
||
|
#endif
|
||
|
|
||
|
#endif
|
||
|
|