mirror of
https://github.com/ZDoom/gzdoom-last-svn.git
synced 2025-05-31 01:10:52 +00:00
- Added DUMB.
git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@114 b0f79afe-0144-0410-b225-9a4edf0717df
This commit is contained in:
parent
2067574412
commit
98001faac7
108 changed files with 37738 additions and 0 deletions
21
dumb/include/internal/riff.h
Normal file
21
dumb/include/internal/riff.h
Normal file
|
@ -0,0 +1,21 @@
|
|||
#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
|
Loading…
Add table
Add a link
Reference in a new issue