wiiqt/WiiQt/ash.h
giantpune@gmail.com 085ce1d522 * moving the "library" files into a common folder 'WiiQt'
* adding in ASH0, LZ77 and  ( messy ) U8 classes
2010-12-10 03:50:08 +00:00

14 lines
335 B
C

#ifndef ASH_H
#define ASH_H
#include "includes.h"
//returns a byteArray of decompressed ASH data
//returns an empty array if the data doesnt have the ASH magic word
QByteArray DecryptAsh( const QByteArray ba );
//check if data starts with "ASH". no other check is done
bool IsAshCompressed( const QByteArray ba );
#endif // ASH_H