mirror of
https://github.com/ZDoom/gzdoom-last-svn.git
synced 2025-05-13 08:40:55 +00:00
git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@114 b0f79afe-0144-0410-b225-9a4edf0717df
21 lines
326 B
C
21 lines
326 B
C
#ifndef RIFF_H
|
|
#define RIFF_H
|
|
|
|
struct riff_chunk
|
|
{
|
|
unsigned type;
|
|
void * data;
|
|
unsigned size;
|
|
};
|
|
|
|
struct riff
|
|
{
|
|
unsigned type;
|
|
unsigned chunk_count;
|
|
struct riff_chunk * chunks;
|
|
};
|
|
|
|
struct riff * riff_parse( unsigned char *, unsigned size, unsigned proper );
|
|
void riff_free( struct riff * );
|
|
|
|
#endif
|