Restructure native codebase

This commit is contained in:
topjohnwu
2022-05-12 02:03:42 -07:00
parent 7505599ea0
commit 622e09862a
78 changed files with 102 additions and 98 deletions

View File

@@ -0,0 +1,13 @@
#pragma once
#include <stream.hpp>
#include "format.hpp"
filter_strm_ptr get_encoder(format_t type, stream_ptr &&base);
filter_strm_ptr get_decoder(format_t type, stream_ptr &&base);
void compress(const char *method, const char *infile, const char *outfile);
void decompress(char *infile, const char *outfile);