mirror of
https://github.com/vgmstream/vgmstream.git
synced 2025-02-06 14:44:25 +01:00
To simplify adding new formats, for now it's a simple list and could improve later. Some missing formats were indirectly added: - Winamp: aifcl - foobar: aifcl, b1s, bdsp, ffw, iadp, wb, xag - XMPlay: many
16 lines
344 B
C
16 lines
344 B
C
/*
|
|
* formats.h - utils to parse supported formats
|
|
*/
|
|
#ifndef _FORMATS_H_
|
|
#define _FORMATS_H_
|
|
|
|
|
|
/* rough number of chars counting all extensions (actually <1500 and extra space) */
|
|
#define VGM_EXTENSION_LIST_CHAR_SIZE 2000
|
|
|
|
const char ** vgmstream_get_formats();
|
|
int vgmstream_get_formats_length();
|
|
|
|
|
|
#endif /* _FORMATS_H_ */
|