1 #ifndef _EXPORTPCM_H_
2 #define _EXPORTPCM_H_
3 
4 //the Majortypes can be lots of stuff, but SubTypes can only
5 //be SF_FORMAT_PCM_16 or SF_FORMAT_VORBIS; see sndfile.h
6 int exportAudioToFile (char *filename, int format);
7 
8 #endif
9