Mercurial > audlegacy-plugins
view src/modplug/archive/arch_rar.h @ 2975:4d778b7a19c6
now sndfile can display Japanese file name.
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Thu, 12 Feb 2009 01:50:09 +0900 |
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