moving files around

git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@15 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
This commit is contained in:
halleyscometsw 2008-02-05 01:35:18 +00:00
parent eb6087ab53
commit 7d7ec31b0d
7 changed files with 13 additions and 0 deletions

13
src/fmt/adx_header.h Normal file
View File

@ -0,0 +1,13 @@
/*
* adx.h - ADX reading and decoding
*/
#include "../vgmstream.h"
#ifndef _ADX_H
#define _ADX_H
VGMSTREAM * init_vgmstream_adx(const char * const filename);
void decode_adx(VGMSTREAMCHANNEL * stream, sample * outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do);
#endif