mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-27 19:10:21 +00:00
17 lines
308 B
C++
17 lines
308 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "miniz.h"
|
|
|
|
class ZipWriter
|
|
{
|
|
private:
|
|
mz_zip_archive _zipArchive;
|
|
string _zipFilename;
|
|
|
|
public:
|
|
ZipWriter(string zipFilename);
|
|
~ZipWriter();
|
|
|
|
void AddFile(string filepath, string zipFilename);
|
|
void AddFile(std::stringstream &filestream, string zipFilename);
|
|
}; |