mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-11 13:24:17 -05:00
19 lines
349 B
C
19 lines
349 B
C
#ifndef NITRO_SND_DATA_H_
|
|
#define NITRO_SND_DATA_H_
|
|
|
|
typedef struct SNDBinaryFileHeader {
|
|
char signature[4];
|
|
u16 byteOrder;
|
|
u16 version;
|
|
u32 fileSize;
|
|
u16 headerSize;
|
|
u16 dataBlocks;
|
|
} SNDBinaryFileHeader;
|
|
|
|
typedef struct SNDBinaryBlockHeader {
|
|
u32 kind;
|
|
u32 size;
|
|
} SNDBinaryBlockHeader;
|
|
|
|
#endif //NITRO_SND_DATA_H_
|