view Plugins/Input/modplug/archive/arch_zip.h @ 278:37316876ef6e trunk

[svn] Use modplug instead of mikmod. Supports more formats & compressed files.
author chainsaw
date Sat, 10 Dec 2005 14:31:13 -0800
parents
children
line wrap: on
line source

/* Modplug XMMS Plugin
 * Authors: Kenton Varda <temporal@gauge3d.org>
 *
 * This source code is public domain.
 */

#ifndef __MODPLUG_ARCH_ZIP_H__INCLUDED__
#define __MODPLUG_ARCH_ZIP_H__INCLUDED__

#include "archive.h"
#include <string>

class arch_Zip: public Archive
{
public:
	arch_Zip(const string& aFileName);
	virtual ~arch_Zip();
	
	static bool ContainsMod(const string& aFileName);
	static bool processLine(char *buffer, uint32 *mSize, char *filename);
};

#endif