Mercurial > audlegacy-plugins
view src/modplug/archive/arch_rar.h @ 3071:ca7d5de41217
Allow much larger buffer in the config GUI.
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Fri, 24 Apr 2009 22:24:01 -0500 |
parents | 3da1b8942b8b |
children |
line wrap: on
line source
/* Modplug XMMS Plugin * Authors: Kenton Varda <temporal@gauge3d.org> * * This source code is public domain. */ #ifndef __MODPLUG_ARCH_RAR_H__INCLUDED__ #define __MODPLUG_ARCH_RAR_H__INCLUDED__ #include "archive.h" #include <string> class arch_Rar: public Archive { public: arch_Rar(const string& aFileName); virtual ~arch_Rar(); static bool ContainsMod(const string& aFileName); }; #endif