mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-08-02 18:14:13 +02:00
e4b4ba875b
Replaces the QProcess->7z shim with the public-domain LZMA SDK (23.01) 7-Zip reader, vendored under sources/import/edz/lzma/ (decode-only subset). New edzsevenzip.cpp wraps SzArEx_Open/SzArEx_Extract and writes entries via Qt, so EdzArchive no longer needs an external 7-Zip at runtime. Enables the C language in CMake for the vendored sources. Verified: the bundled decoder extracts all three ifm sample .edz and the generated elements still match the Python oracle exactly (byte-correct decode), with no 7z on the path. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
27 lines
626 B
C
27 lines
626 B
C
/* XzCrc64.h -- CRC64 calculation
|
|
2023-04-02 : Igor Pavlov : Public domain */
|
|
|
|
#ifndef ZIP7_INC_XZ_CRC64_H
|
|
#define ZIP7_INC_XZ_CRC64_H
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "7zTypes.h"
|
|
|
|
EXTERN_C_BEGIN
|
|
|
|
extern UInt64 g_Crc64Table[];
|
|
|
|
void Z7_FASTCALL Crc64GenerateTable(void);
|
|
|
|
#define CRC64_INIT_VAL UINT64_CONST(0xFFFFFFFFFFFFFFFF)
|
|
#define CRC64_GET_DIGEST(crc) ((crc) ^ CRC64_INIT_VAL)
|
|
#define CRC64_UPDATE_BYTE(crc, b) (g_Crc64Table[((crc) ^ (b)) & 0xFF] ^ ((crc) >> 8))
|
|
|
|
UInt64 Z7_FASTCALL Crc64Update(UInt64 crc, const void *data, size_t size);
|
|
UInt64 Z7_FASTCALL Crc64Calc(const void *data, size_t size);
|
|
|
|
EXTERN_C_END
|
|
|
|
#endif
|