mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
7f41bfa64a
it is not enabled by default, edit the Makefile for USE_CODEC_FLAC, or add USE_CODEC_FLAC=1 to your make command line arguments. Xcode project file still needs updating for this. git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@857 af15c1b1-3010-417e-b628-4374ebc0bcbd
13 lines
207 B
C
13 lines
207 B
C
/* fLaC streaming music support. */
|
|
|
|
#if !defined(_SND_FLAC_H_)
|
|
#define _SND_FLAC_H_ 1
|
|
|
|
#if defined(USE_CODEC_FLAC)
|
|
|
|
extern snd_codec_t flac_codec;
|
|
|
|
#endif /* USE_CODEC_FLAC */
|
|
|
|
#endif /* ! _SND_FLAC_H_ */
|
|
|