Mercurial > sdl-ios-xcode
comparison src/audio/SDL_wave.h @ 722:90dfd3f5782c
*** empty log message ***
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 21 Sep 2003 19:25:45 +0000 |
parents | f6ffac90895c |
children | b8d311d90021 |
comparison
equal
deleted
inserted
replaced
721:ab0656314eef | 722:90dfd3f5782c |
---|---|
58 | 58 |
59 /* The general chunk found in the WAVE file */ | 59 /* The general chunk found in the WAVE file */ |
60 typedef struct Chunk { | 60 typedef struct Chunk { |
61 Uint32 magic; | 61 Uint32 magic; |
62 Uint32 length; | 62 Uint32 length; |
63 Uint8 *data; /* Data includes magic and length */ | 63 Uint8 *data; |
64 } Chunk; | 64 } Chunk; |
65 | 65 |