blob: 9a8a1241dcd3486d17a8fad0c3a36a68e6e259ea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/**
* MODPlay: internal prototypes
*/
#ifndef _MODPLAY_INT_H
#define _MODPLAY_INT_H
void MODPlay_func(ModMusic *m, int c, int s, int p, int vl, int vr);
extern int modplay_int_cnt;
extern unsigned int modload_flags;
extern const unsigned short modplay_pitch_per_tbl[120];
ModMusic *MODLoad_MOD(void *d);
void MODPlay_MOD(ModMusic *m, int *t);
#ifdef NO_PSX_LIB
unsigned short SsFreqToPitch(int hz);
#endif
#endif
|