Welcome to mirror list, hosted at ThFree Co, Russian Federation.

miniz_extension.hpp « libslic3r « src - github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8d0967cbcc64e687f6231987ec8830229237d9f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef MINIZ_EXTENSION_HPP
#define MINIZ_EXTENSION_HPP

#include <string>
#include <miniz.h>

namespace Slic3r {

bool open_zip_reader(mz_zip_archive *zip, const std::string &fname_utf8);
bool open_zip_writer(mz_zip_archive *zip, const std::string &fname_utf8);
bool close_zip_reader(mz_zip_archive *zip);
bool close_zip_writer(mz_zip_archive *zip);

}

#endif // MINIZ_EXTENSION_HPP