mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-12 14:11:33 -06:00
16 lines
255 B
C++
Executable File
16 lines
255 B
C++
Executable File
// XpressDecoder.h
|
|
|
|
#ifndef ZIP7_INC_XPRESS_DECODER_H
|
|
#define ZIP7_INC_XPRESS_DECODER_H
|
|
|
|
#include "../../Common/MyWindows.h"
|
|
|
|
namespace NCompress {
|
|
namespace NXpress {
|
|
|
|
HRESULT Decode(const Byte *in, size_t inSize, Byte *out, size_t outSize);
|
|
|
|
}}
|
|
|
|
#endif
|