Mercurial > audlegacy-plugins
view src/modplug/archive/arch_bz2.h @ 3198:83b1a4e5f453
alsa-ng: Keep mixer open even when playback stopped.
author | John Lindgren <john.lindgren@tds.net> |
---|---|
date | Wed, 22 Jul 2009 16:42:16 -0400 |
parents | 3da1b8942b8b |
children |
line wrap: on
line source
/* Modplug XMMS Plugin * Authors: Kenton Varda <temporal@gauge3d.org> * Colin DeVilbiss <crdevilb@mtu.edu> * * This source code is public domain. */ // BZ2 support added by Colin DeVilbiss <crdevilb@mtu.edu> #ifndef __MODPLUG_ARCH_BZIP2_H__INCLUDED__ #define __MODPLUG_ARCH_BZIP2_H__INCLUDED__ #include "archive.h" #include <string> class arch_Bzip2: public Archive { public: arch_Bzip2(const string& aFileName); virtual ~arch_Bzip2(); static bool ContainsMod(const string& aFileName); }; #endif