mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-16 22:11:49 -06:00
Add Fast LZMA2 codec
This commit is contained in:
20
C/fast-lzma2/data_block.h
Normal file
20
C/fast-lzma2/data_block.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#include "mem.h"
|
||||
|
||||
#ifndef FL2_DATA_BLOCK_H_
|
||||
#define FL2_DATA_BLOCK_H_
|
||||
|
||||
#if defined (__cplusplus)
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct {
|
||||
const BYTE* data;
|
||||
size_t start;
|
||||
size_t end;
|
||||
} FL2_dataBlock;
|
||||
|
||||
#if defined (__cplusplus)
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* FL2_DATA_BLOCK_H_ */
|
||||
Reference in New Issue
Block a user