mirror of
https://github.com/martravi/wiiqt.git
synced 2024-11-14 21:35:12 +01:00
085ce1d522
* adding in ASH0, LZ77 and ( messy ) U8 classes
14 lines
335 B
C
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
|