Mercurial > audlegacy-plugins
view src/modplug/archive/arch_rar.h @ 3085:ac0af6b39272
Introduce new GIO plugin to buildsystem. stdio is now deprecated.
Thoughts:
- getc()/ungetc() should be moved to VFS core now
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Wed, 29 Apr 2009 20:58:36 -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