mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-05-02 15:44:28 +02:00
10 lines
149 B
C++
10 lines
149 B
C++
#pragma once
|
|
#include <QByteArray>
|
|
|
|
class GZip
|
|
{
|
|
public:
|
|
static bool inflate(const QByteArray &compressedBytes, QByteArray &uncompressedBytes);
|
|
};
|
|
|